Exemplo n.º 1
0
 public void AddCount()
 {
     count++;
     if (!isInitialNode)
     {
         parent.AddCount();
     }
 }
Exemplo n.º 2
0
 public void SetParent(WordTreeNode st)
 {
     parent = st;
     if (character == '!')
     {
         count++;
         parent.AddCount();
     }
 }
Exemplo n.º 3
0
 public void SetParent(WordTreeNode st)
 {
     parent = st;
     if (character == '!')
     {
         count++;
         parent.AddCount();
     }
 }