Commit Graph

3 Commits (71f7540952034b82389f98b9519199cb9e32e1a8)

Author SHA1 Message Date
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
ashwath462 4fc4e6e25b
chore(CPlusCPlus): add trie algorithms (#1006) 2022-10-15 20:32:12 -04:00
Ellika Mishra cb60762c39
chore(CPlusPlus): trie datastructure for searching added (#578) 2021-10-21 08:45:10 -04:00