Tag
Tree
- Feb 7, 2026
Implementing Efficient Prefix Search with Tries
Prefix search is a fundamental operation in computer science, typically implemented using a Trie (prefix tree). A Trie is a dynamic data structure for storing a collection of strings, supporting efficient insertion, lookup, and enumeration operations. Tries and their variants provide a powerful and efficient way to manage and query large volumes of string data.
#数据结构#Tree#Recursion#Tries - Feb 7, 2026
Depth-First Search: Exploring Deep Before Wide
#DFS#Tree#BinaryTree#Graph - Feb 7, 2026
Breadth-First Search: Level-Order Exploration
#Tree#Graph#BFS#Dijkstra