コード例 #1
0
ファイル: Trie.cs プロジェクト: pmcculler/datastructures
        public List <string> GetAllEntries()
        {
            List <string> items = new List <string>();

            _root.Reconstruct(new Stack <char>(), items);
            return(items);
        }