Open In App

Trie meaning in DSA

Trie data structure is defined as a Tree based data structure that is used for storing some collection of strings and performing efficient search operations on them. 

The word Trie is derived from reTRIEval, which means finding something or obtaining it. 



Representation of trie is similar to a tree data structure with a root node connected to its elements in a structured way with leaf nodes representing the end.

Trie Data Structure

Properties of Trie:

Applications of Trie:

Trie is involved wherever string manipulation or processing is involved. Here are a few usages of trie: 



Advantages of Trie:

Disadvantages of Trie:

What else can you read?

Article Tags :