package DataStructures.HashMap.Hashing; class Node { int data; Node next; public Node(int data) { this.data = data; this.next = null; } }