Пример #1
0
 public HyphenationTree()
 {
     stoplist = new Dictionary<>(23); // usually a small table
     classmap = new TernaryTree();
     vspace = new ByteVector();
     vspace.alloc(1); // this reserves index 0, which we don't use
 }
Пример #2
0
 public HyphenationTree()
 {
     stoplist = new HashMap<string, IList<object>>(23); // usually a small table
     classmap = new TernaryTree();
     vspace = new ByteVector();
     vspace.Alloc(1); // this reserves index 0, which we don't use
 }