Node(int hash, K key, V value, Node next) {this.hash = hash;this.key = key;this.value = value;this.next = next; }// getter and setter ... toString ...public final K getKey() { return key; }public final V getValue() { return value; }public final String toString() { retur...