-
Notifications
You must be signed in to change notification settings - Fork 1
/
frequenciatextoemlista.c
110 lines (92 loc) · 1.67 KB
/
frequenciatextoemlista.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct no lista;
struct no
{
char item;
int frequencia;
lista *prox;
};
void imprimir(lista *p)
{
if(p)
{
//printf("Mostrando a lista:\n");
lista *aux = p;
while (aux != NULL)
{
printf("%c %d\n", aux->item, aux->frequencia);
aux = aux->prox;
}
}
else
printf("Lista vazia.");
printf("\n");
}
lista * criar (int x, lista *p, char z)
{
p->item = z;
p->frequencia=x;
p->prox = NULL;
return p;
}
lista *inserir_comeco(lista *cabeca, int num, char letra)
{
lista *novoNo = malloc(sizeof(lista));
novoNo=criar(num, novoNo, letra);
novoNo->prox=cabeca;
return novoNo;
}
void troca(char *a, char *b)
{
char temp;
temp=*a;
*a=*b;
*b=temp;
}
void bubble_sort(char *v, int n)
{
int i, j;
for(i=n-1; i>=0; i--)
{
for ( j = 0; j < i; j++)
{
if(v[j]>v[j+1])
{
troca(&v[j], &v[j+1]);
}
}
}
}
int main()
{
char *frase;
lista *q=NULL;
frase=malloc(sizeof(char)*100);
int i, cont;
scanf("%[^\n]", frase);
int n=strlen(frase);
getchar();
bubble_sort(frase, n);
i=0;
int j;
while (i<n)
{
cont=1;
for ( j = i+1; j<=n; j++)
{
if(frase[i]==frase[j])
{
cont++;
}
else
{
q=inserir_comeco(q, cont, frase[i]);
i=j;
break;
}
}
}
imprimir(q);
}