mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-09 20:20:56 +08:00
Delete Node.java
This commit is contained in:
@ -1,11 +0,0 @@
|
|||||||
package DataStructures.HashMap.Hashing;
|
|
||||||
|
|
||||||
class Node {
|
|
||||||
int data;
|
|
||||||
Node next;
|
|
||||||
|
|
||||||
public Node(int data) {
|
|
||||||
this.data = data;
|
|
||||||
this.next = null;
|
|
||||||
}
|
|
||||||
}
|
|
Reference in New Issue
Block a user