Skip to content

Files

Latest commit

cd716e7 · Jan 25, 2021

History

History

Trie

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jan 25, 2021

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++