예제 #1
0
 public static bool ContainsKey(string key) => _trie.ContainsKey(key);
예제 #2
0
 /**
  * 是否包含key
  * @param key
  * @return
  */
 public static bool containsKey(String key)
 {
     return(trie.ContainsKey(key));
 }