//************************ SLLNode.java ******************************* // node in a generic singly linked list class public class SLLNode { public T info; public SLLNode next; public SLLNode() { next = null; } public SLLNode(T el) { info = el; next = null; } public SLLNode(T el, SLLNode ptr) { info = el; next = ptr; } }