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;
string tag;
TrieNode()
:hmap(), isLeaf(false), count(0), tag()
{
isLeaf = false;
count = 0;