示例#1
0
 protected bool Equals(InnerDawgNode <TKey, TValue> other)
 {
     return(EqualityComparer <TKey> .Default.Equals(Key, other.Key) && Equals(LeftChild, other.LeftChild) && Equals(RightSibling, other.RightSibling));
 }
示例#2
0
 public Dawg()
 {
     Root = new InnerDawgNode <TKey, TValue>();
 }