DSA/algorithms/CPlusPlus/Trie
Yashkumar Gupta 4b2835bae6
chore(CPlusPlus): add find words matching pattern dictionary (#1050)
* Create find_all_words_matching_pattern_in_given_dictionary.cpp

Given a dictionary of words where each word follows a CamelCase notation, find all words in it that matches a given pattern of all uppercase characters.

We can use a Trie data structure to solve this problem. The idea is to insert all uppercase characters of each word in the CamelCase dictionary into a Trie.

Expected output:
HiTech
HiTechLab
HiTechCity

* Update README.md
2022-11-30 08:45:11 -04:00
..
find_all_words_matching_pattern_in_given_dictionary.cpp chore(CPlusPlus): add find words matching pattern dictionary (#1050) 2022-11-30 08:45:11 -04:00
trie_delete.cpp chore(CPlusCPlus): add trie algorithms (#1006) 2022-10-15 20:32:12 -04:00
trie_insert_search_startWith.cpp chore(CPlusCPlus): add trie algorithms (#1006) 2022-10-15 20:32:12 -04:00
trie_search.cpp chore(CPlusPlus): trie datastructure for searching added (#578) 2021-10-21 08:45:10 -04:00