Trie is also known as _________

🎲 Try a Random Question  |  Total Questions in Quiz: 39  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Data Structures & Algorithms Practice Test: Trie & Suffix Tree — practice the complete quiz, review flashcards, or try a random question.

A trie, also known as a prefix tree, is a tree-like data structure that stores a collection of strings. Each node in the trie represents a character in the strings, and the children of a node represent the characters that can follow that character in the strings. The root node of the trie represents the empty string. A suffix tree is a tree-like data structure that stores all suffixes of a given string. Each node in the suffix tree represents a suffix of the string, and the children of a node represent the suffixes that can follow that suffix in the string. The root node of the suffix tree... Show more

Trie is also known as _________