Skip to content
Snippets Groups Projects
gadag.hpp 272 B
Newer Older
#ifndef gaddag_H
#define gaddag_H

#include <map>
#include <string>
#include "node.hpp"
using namespace std;


    void insert(string word);
    bool search(string word);
    void clear(Node* node);
};

#endif