modify struct trienode

This commit is contained in:
wyy 2013-06-30 22:32:42 +08:00
parent 651800d07e
commit 78db3498d1

1
Trie.h
View File

@ -25,6 +25,7 @@ namespace CppJieba
unsigned int count; unsigned int count;
string tag; string tag;
TrieNode() TrieNode()
:hmap(), isLeaf(false), count(0), tag()
{ {
isLeaf = false; isLeaf = false;
count = 0; count = 0;