需要帮助在c ++中实现trie

时间:2015-11-17 22:40:38

标签: c++ data-structures trie

innerWidth

这里:我遇到运行时错误..对我来说它似乎是正确的..我不知道它有什么问题。任何帮助对我来说都很有用:)谢谢

1 个答案:

答案 0 :(得分:0)

too并未指向任何内容。

最简单的解决方法是删除*以使其成为本地对象而不是指针。

int main(){
    string A[5] = {"apple, ball , bat , cat, car"};
    trie too; //<------ Fix here
    node *p = new node();
    too->root = p; // **here**
}

或者,您可以new trie个对象。但为了您的目的,这是不必要的。