示例#1
0
 //O(n)
 public Value Get(Key key)
 {
     return(list.Get(key));
 }
示例#2
0
        public Value Get(Key key)
        {
            LinkedList3 <Key, Value> list = hashtable[Hash(key)];

            return(list.Get(key));
        }