List nodes - review
class Node {
private String st;
private Node next;
public Node(String s) {st = s;}
public String getString() {return st;}
public void setString(String s) { st = s;}
public Node getNext() {return next;}
public void setNext(Node n) {next = n ;}
}
Previous slide
Next slide
Back to first slide
View graphic version