Solution: Search Suggestions System
Explore how to design a search suggestions system using a trie to efficiently find product names sharing prefixes with a searched word. This lesson helps you understand building and searching tries, optimizing time complexity over naive methods by balancing sorting, insertion, and prefix searching. You will learn step-by-step trie construction and how to retrieve relevant suggestions after each character input.
Statement
Given an array of strings called products and a word to search, design a system that, when each character of the searched word is typed, suggests at most three product names from products. Suggested products should share a common prefix with the searched word. If more than three products exist with a common prefix, return the three product names that appear first in lexicographical order.
Return the suggested products, which will be a list of lists after each character of searched word is typed.
Constraints:
-
products.length -
products[i].length -
sum(products[i].length)