Tag
Tries
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 - Oct 30, 2025
[Leetcode 208] 实现 Trie
实现 Trie 类:初始化、插入字符串 、检索、前缀检索
#设计#数据结构#Tries#哈希