mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-14 17:32:35 +08:00
11 lines
147 B
Java
11 lines
147 B
Java
package DataStructures.HashMap.Hashing;
|
|
|
|
class Node {
|
|
int data;
|
|
Node next;
|
|
|
|
public Node(int data) {
|
|
this.data = data;
|
|
this.next = null;
|
|
}
|
|
} |