About 401,000 results
Open links in new tab
  1. Trie - Wikipedia

    In computer science, a trie (/ ˈtraɪ /, / ˈtriː / ⓘ), also known as a digital tree or prefix tree, [1] is a specialized search tree data structure used to store and retrieve strings from a dictionary or …

  2. Trie Data Structure - Commonly Asked Questions - GeeksforGeeks

    Sep 1, 2025 · The trie data structure, also known as a prefix tree, is a tree-like data structure used for efficient retrieval of key-value pairs. It is commonly used for implementing dictionaries and …

  3. Trie Data Structure: Complete Guide to Prefix Trees

    A trie (pronounced “try”) is a tree-based data structure that stores strings efficiently by sharing common prefixes. Also called a prefix tree, a trie enables fast string search, insertion, and …

  4. trie - Wiktionary, the free dictionary

    3 days ago · trie (plural tries) (computer science) An ordered tree data structure that is used to store an associative array where the keys are usually strings.

  5. Tries Data Structure - Online Tutorials Library

    A trie is a type of a multi-way search tree, which is fundamentally used to retrieve specific keys from a string or a set of strings. It stores the data in an ordered efficient way since it uses …

  6. (Character-aware) Read the prefix to search for, matching characters as you walk down the Patricia trie. Time required: O(n), since we have to read all the characters of the prefix.

  7. Tries | Brilliant Math & Science Wiki

    A trie is, like other tree-based data structures, made up of a set of nodes connected by pointers. These pointers indicate a parent-child relationship between the nodes.

  8. Trie Data Structure - Explained with Examples - Studytonight

    Jan 25, 2021 · A Trie is an advanced data structure that is sometimes also known as prefix tree or digital tree. It is a tree that stores the data in an ordered and efficient way.

  9. Trie (Keyword Tree) Tutorials & Notes - HackerEarth

    Detailed tutorial on Trie (Keyword Tree) to improve your understanding of Data Structures. Also try practice problems to test & improve your skill level.

  10. Tries or Prefix Trees | Baeldung on Computer Science

    Mar 18, 2024 · In the basic implementation of a trie, each node contains a single character and a list of pointers to its children nodes. The key for the node is not explicitly stored: instead, we …