-
Notifications
You must be signed in to change notification settings - Fork 0
/
strings sopadeletras main.c
56 lines (42 loc) · 996 Bytes
/
strings sopadeletras main.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
#include <stdio.h>
#include <string.h>
#define MAX_TAM 30
int main()
{
char conjunto[MAX_TAM];
scanf(" %s", conjunto);
int N, i = 0, j = 0, k = 0;
int cont = 0;
scanf("%d", &N);
char palavras[N][MAX_TAM];
for (i = 0; i < N; i++)
{
scanf(" %s", palavras[i]);
}
char conjuntoCopia[MAX_TAM];
strcpy(conjuntoCopia, conjunto);
for (i = 0; i < N; i++)
{
while (j < strlen(palavras[i]) && k < strlen(conjuntoCopia))
{
if (palavras[i][j] == conjuntoCopia[k])
{
j++;
conjuntoCopia[k] = '~';
k = -1;
}
k++;
}
if (j == strlen(palavras[i]))
{
cont++;
strcpy(conjunto, conjuntoCopia);
}
else
strcpy(conjuntoCopia, conjunto);
j = 0;
k = 0;
}
printf("E possivel formar %d palavras com esse conjunto\n", cont);
return 0;
}