Happy Coding

This blog is for my memorandum about programming and English.

Happy Coding

This blog is for my memorandum

TrieTree

Trie tree

What is Trie tree? Trie tree is a data structure of handling string. - Looking up data in a trie is faster in the worst case O(m)(m is the length of a search string). - There are no collisions of different keys in a trie. - There is no nee…