Tag
Tree
Language
- Sep 18, 2024
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#Prefix - Sep 4, 2024
Depth-First Search: Exploring Deep Before Wide
#DFS#Tree#BinaryTree#Graph - Aug 20, 2024
Breadth-First Search: Level-Order Exploration
#Tree#Graph#BFS#Dijkstra