This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <fstream> | |
| #include <string> | |
| using namespace std; | |
| #include "abh.hpp" | |
| #define TAM 256 | |
| size_t outSize; | |
| void carregar_dic(string dic[], const string& nome_arquivo) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| #define TAM 256 | |
| template <typename T> | |
| struct No{ | |
| int freq; | |
| T dado; | |
| No <T> *esq, *dir, *eloP; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <fstream> | |
| #include <string> | |
| using namespace std; | |
| #include "abh.hpp" | |
| #define TAM 256 | |
| size_t outSize; | |
| string ler_txt(const string &nomeArquivo){ |