Advertisement
Guest User

lista.c

a guest
May 21st, 2011
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. typedef struct{
  5.     int frequencia;
  6.     char caractere;
  7. }TipoItem;
  8.  
  9. typedef struct TipoCelula* Ponteiro;
  10.  
  11. typedef struct{
  12.     TipoItem item;
  13.     Ponteiro prox;
  14. }TipoCelula;
  15.  
  16. typedef struct{
  17.     Ponteiro primeiro;
  18.     Ponteiro ultimo;
  19. }TipoLista;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement