Advertisement
Guest User

pilha.h

a guest
Nov 14th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. #ifndef PILHA_CALC_H
  2. #define PILHA_CALC_H
  3.  
  4. #include "arvore_binaria.h"
  5.  
  6. typedef struct pilha Pilha;
  7.  
  8. Pilha* pilha_criar();
  9. void pilha_apagar(Pilha** pilha);
  10. void pilha_inserir(Pilha* pilha, char string_item[]);
  11. Arvore_Binaria* pilha_topo_arvore(Pilha* pilha)
  12. void pilha_remover(Pilha* pilha);
  13. void pilha_inserir_arvore(Pilha* pilha, Arvore_Binaria* arvore);
  14. int pilha_tamanho(Pilha* pilha);
  15. int pilha_cheia(Pilha* pilha);
  16. int pilha_vazia(Pilha* pilha);
  17. Arvore_Binaria* pilha_topo_arvore(Pilha* pilha);
  18. void pilha_imprimir(Pilha* pilha);
  19.  
  20.  
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement