Respuesta :

Trie is an efficient knowledge return data format. Using Trie, search complexities can be brought to the optimal limitation (key length).

What is Trie?

  • A trie is a sort of k-array search tree, a tree data structure used for locating particular keys from within a set.
  • It is also known as a digital tree or prefix tree. These keys are typically strings containing isolated characters rather than the complete key defining linkages between nodes.
  • Strings are kept in a unique data structure called a Trie that looks like a graph.
  • There are nodes and edges in it. At most 26 children can be found in each node, and edges join each parent node to its offspring.
  • An excellent matching technique, a trie (pronounced try) gets its name from retrieval thanks to its structure.

To learn more about array, refer to:

https://brainly.com/question/14263445

#SPJ4