Generic_ LinkedList
parent
d0be8d868c
commit
53111eeee3
|
@ -0,0 +1,13 @@
|
|||
package LinkedList.Generic;
|
||||
|
||||
public class ElementenList {
|
||||
Node<?> head;
|
||||
|
||||
public <T> void addInt(T value) {
|
||||
|
||||
Node<T> newNode = new Node<>();
|
||||
newNode.value = value;
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
package LinkedList.Generic;
|
||||
|
||||
public class Node <T> {
|
||||
T value;
|
||||
Node<T> next;
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
package LinkedList.Generic;
|
||||
|
||||
public class Test {
|
||||
|
||||
public static void main(String[] args) {
|
||||
// TODO Auto-generated method stub
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue