예제 #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
파일: Dawg.cs 프로젝트: bluelight1324/Eliza
 public Dawg()
 {
     Root = new InnerDawgNode <TKey, TValue>();
 }