DSA/algorithms
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
..
C chore(C): add bogo sort algorithm (#829) 2022-09-06 18:31:56 +05:00
CPlusPlus chore(CPlusPlus): add find words matching pattern dictionary (#1050) 2022-11-30 08:45:11 -04:00
CSharp Added CSharp Fibonacci Checker program (#913) 2022-10-06 18:31:48 +05:30
Go enh(Go): import the string package on anagram (#838) 2022-09-11 20:44:32 -04:00
Haskell docs: replace ordered lists to unordered lists (#551) 2021-10-09 11:06:25 -04:00
Java chore(Java) : add circular singly linked list (#848) 2022-10-16 12:55:30 +05:30
JavaScript chore(JavaScript): add two sum (#1031) 2022-10-20 22:59:44 -04:00
Python chore(Python): add roman number to int (#1084) 2022-11-21 17:49:39 -04:00
Rust docs: replace ordered lists to unordered lists (#551) 2021-10-09 11:06:25 -04:00