13. Tries (접두사 트리)
Tries Tries are a data structure that can be used to store strings. The idea is to store the characters of the string in a tree-like structure, where each node of the tree represents a single character. We can use this structure to store strings in a way that allows us to quickly search for strings with a common prefix. 트라이는 문자열을 저장하는 데 사용할 수 있는 데이터 구조입니다. 이 아이디어는 문자열의 문자를 트리와 같은 구조에 저장하는 것으로, 트..
2024.03.25