public word(string s_word, double p_count, double xcnt, trie tr) { m_word = s_word; count = p_count; xCount = xcnt; Trie = tr; TravelProbability = double.NegativeInfinity; }
static public word NewLoad(BinaryReader br, trie tr) { return((new word(tr)).Load(br)); }
public word(trie tr) { Trie = tr; }
public word(int index, trie tr) { m_index = index; Trie = tr; }
static trie() { //him = new int[10]; TRIE = new trie(); }