| 25 | vector<int>indexes; |
| 26 | |
| 27 | TrieNode(){ |
| 28 | for (int i=0; i<26; i++){ |
| 29 | alphabets[i]=NULL; |
| 30 | } |
| 31 | endOfword=false; |
| 32 | } |
| 33 | }; |
| 34 | |
| 35 | void insertTrie(TrieNode *root, string &s, int index){ |
nothing calls this directly
no outgoing calls
no test coverage detected