Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 382 Bytes

readme.md

File metadata and controls

8 lines (6 loc) · 382 Bytes

Trie

A trie is a tree and each node in it contains the number of pointers equal to the number of characters of the alphabet. For example, if we assume that all the strings are formed with English alphabet characters “a” to “z” then each node of the trie contains 26 pointers.

Questions :

  • Searching a word in trie ----> C++