Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Written by Prashant Basnet
Prashant Basnet, a software engineer at Unisala.com, focuses on software development and enjoys building platforms to share knowledge. Interested in system design, data structures, and is currently learning NLP
Why Trie Data Structure?
Whenever you start typing in modern applications - whether it's a search bar, messaging app, or navigation system, there's likely a Trie data structure working behind the scenes to efficiently match your input with potential suggestions or completions. The Trie's structure makes it particularly efficient for this kind of prefix-based searching and matching.
It is safe to say, that anytime you type something in any of the modern application, it might use trie to find the particular functionality you are looking for.
Anything you search on google is also an example of trie data structure. Trie data structure are used primarily for:
In Modern applications, it is used for:
A Trie efficiently handles prefix-based searching in Unisala. Enabling fast autocomplete suggestions as users type. This minimizes storage space compared to storing full strings.
Unisala topic search supports university names, majors, and spaces names, around 10000 names are broken down into tree structure. When publishing an article in unisala, you can choose from thousands and thousands of topic. Even when i publish this article, i can choose any topic i want to publish this post under.
if i type "data", then i am suggested words that matches my search. This is an application of Trie Data structure.
What is Trie Data Structure?
A Trie is a specialised tree used in searching most often with text. In most cases, it can out perform binary search tree, hash table and other ds.
Trie allow us to know if a word or part of word exist in the body of text.
Trie has usaully empty root node and from there letters are added. It's not binary tree, and can have multiple childrens.
When we search some like "A", if we have this in our tree, we know right away there are two words associated with "A" i.e ARE, AS.
Another name for trie is prefix tree. It's tree like data structure which proves to be quite efficient in solving these problems specific to strings.
Time Complexity:
Big of Trie = O(length of word), looking for a word ARE
Space Complexity:
Has a major advantage, we don't have to store word multiple times
An example of Trie:
Coding for Trie Data Structure:
This is basic algorithm of Trie data structure.
Design Add and Search Word Data Structure
Design a data structure that supports adding new words and searching for existing words.
Implement the WordDictionary class:
Example 1:
Insert is the same as previous code, however this time, we need to adjust our search to match "." as wildcard, where if we encounter one of these, we check for all our children in the current node
#trie #datastructure #trees