removed duplciated data-structures

This commit is contained in:
Christian Bender
2018-07-25 16:37:10 +02:00
parent 89b94a8f52
commit c86ba856a8
52 changed files with 75 additions and 30618 deletions

View File

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