本文整理汇总了C#中Trie.add方法的典型用法代码示例。如果您正苦于以下问题:C# Trie.add方法的具体用法?C# Trie.add怎么用?C# Trie.add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Trie
的用法示例。
在下文中一共展示了Trie.add方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestAddExitingItem
public void TestAddExitingItem()
{
Trie trie = new Trie();
trie.add("test");
int actual = trie.add("test");
int expected = 2;
Assert.AreEqual(expected, actual,
"expected 2 for adding 2 times same key");
}
示例2: TestAddNewItem
public void TestAddNewItem()
{
Trie trie = new Trie();
int actual = trie.add("test");
int expected = 1;
Assert.AreEqual(expected, actual,
"expected 0 for adding new item");
}
示例3: DomainHandler
public DomainHandler(string path)
{
trie = new Trie();
int id = 0;
foreach (var line in File.ReadLines((path)))
{
string item = reverse(line);
trie.add(item);
id++;
}
}