**Problem Statement:**
Given the required input arguments, write an efficient algorithm to solve the **Implement Trie (Prefix Tree)** problem. Implement the required logic as specified by standard definitions for this classic algorithmic challenge.
**Hint / Expected Approach:**
Array[26] children + isEnd flag at each node
**Edge Cases to Consider:**
- (1) Insert empty string
- (2) Search prefix matching full word
- (3) Common prefix words