mirror of
https://github.com/TheAlgorithms/Java.git
synced 2026-03-13 08:40:43 +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