mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-18 17:31:13 +08:00
removed duplciated data-structures
This commit is contained in:
9
DataStructures/HashMap/Hashing/Node.java
Normal file
9
DataStructures/HashMap/Hashing/Node.java
Normal file
@ -0,0 +1,9 @@
|
||||
class Node {
|
||||
int data;
|
||||
Node next;
|
||||
|
||||
public Node(int data) {
|
||||
this.data = data;
|
||||
this.next = null;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user