Concept Flow - Trie insertion and search
Insert/Search first char
Node exists?
No→Create new node
Link new node
Move to next char
Repeat until word end
Mark end of word (insertion) or Return found/not found (search)
For each character in the word, check if a node exists. If not, create it. Move to the next character until the word ends. Mark the end for insertion or check for presence in search.