Ejemplo n.º 1
0
 public Value Get(Key key)
 {
     return(list.Get(key));
 }
Ejemplo n.º 2
0
        public Value Get(Key key)
        {
            LinkedListThree <Key, Value> lst = hashtable[Hash(key)];

            return(lst.Get(key));
        }