-
Notifications
You must be signed in to change notification settings - Fork 1
/
maiorsequencia.c
146 lines (123 loc) · 2.54 KB
/
maiorsequencia.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct no lista;
struct no
{
char item;
int indice;
lista *prox;
};
void deletarlista(lista** q)
{
lista* current = *q;
lista* next;
while (current != NULL)
{
next = current->prox;
free(current);
current = next;
}
*q = NULL;
}
lista * criar (char x, lista *p, int i)
{
p->item = x;
p->prox = NULL;
p->indice=i;
return p;
}
lista *inserirFinal(lista *cabeca, char num, int indice)
{
lista *novoNo = malloc(sizeof(lista));
novoNo=criar(num, novoNo, indice);
//lista vazia
if (cabeca == NULL)
{
return novoNo;
}
else
{
lista *aux = cabeca;
while (aux->prox != NULL)
{
aux = aux->prox;
}
aux->prox = novoNo;
}
return cabeca;
}
void imprimir(lista *p)
{
if(p)
{
printf("Mostrando a lista:\n");
lista *aux = p;
while (aux != NULL)
{
printf("num:%d indice:%d \n", aux->item, aux->indice);
aux = aux->prox;
}
}
else
printf("Lista vazia.");
printf("\n");
}
void procurarsequencia(lista *p, int *comeco, int *fim)
{
int auxcomeco, auxfim, n=0;
int flag=0, tam=0, local=0;
while (p != NULL)
{
if(flag==0 && p->item=='0')
{
auxcomeco=p->indice;
p = p->prox;
flag=1;
}
else if((p->item=='1' || p->prox==NULL)&& flag==1)
{
auxfim=p->indice;
n=auxfim-auxcomeco;
if(n>tam)
{
*comeco=auxcomeco;
*fim=auxfim;
tam=n;
}
p = p->prox;
flag=0;
}
else
{
p = p->prox;
}
}
}
long long int tam(long long int i)
{
int casa=1;
while (i/=10) casa++;
return casa;
}
int main()
{
lista *p=NULL;
long long int n, i, aux;
char num[100];
scanf("%[^\n]s", num);
while (strcmp(num, "0")!=0)
{
getchar();
n=strlen(num);
int comeco=0, fim=0;
for ( i = 0; i < n; i++)
{
p=inserirFinal(p, num[i], i);
}
procurarsequencia(p, &comeco, &fim);
printf("%d %d\n", comeco, fim-1);
scanf("%[^\n]s", num);
deletarlista(&p);
}
}