0
/ 10
Using this class definition:
public class node<E> { //... instance variables public node(E d, node<E> n) { this.data = d;...
Using this class definition:
public class node<E> {
//... instance variables
public node(E d, node<E> n) {
this.data = d;
this.next = n;
}
public E getData() {return data; }
public void setData(E d) {data = d; }
public node<E> getNext() {return next; }
public void setNext(node<E> n) {next = n; }
}
Complete the method createNewNode
that returns
a new node
using the constructor above.
Your feedback will appear here when you check your answer.