Open seungriyou opened 8 months ago
https://leetcode.com/problems/implement-trie-prefix-tree/
트라이 자료구조를 구현한다.
is_word와 children 필드를 가지는 TrieNode 클래스를 생성하면 쉬워진다. children의 경우, 빠르게 검색 가능해야하므로 hash table로 구현한다.
is_word
children
TrieNode
Approach
트라이 자료구조를 구현한다.
is_word
와children
필드를 가지는TrieNode
클래스를 생성하면 쉬워진다.children
의 경우, 빠르게 검색 가능해야하므로 hash table로 구현한다.