public class SimpleNode<C> { private C data; private Node next; public SimpleNode(C the_data){ data=the_data; next=null; } }