This commit is contained in:
shivg7706
2018-05-19 19:34:47 +05:30
parent 26998e2815
commit 2065642099
5 changed files with 155 additions and 161 deletions

View File

@ -0,0 +1,9 @@
class Node {
int data;
Node next;
public Node(int data) {
this.data = data;
this.next = null;
}
}