// Hunter Schafer, CSE 143 // ListNode is a class for storing a single node of a linked list storing // integer values. It has two public data fields for the data and the link to // the next node in the list and has three constructors: public class ListNode { public int data; // data stored in this node public ListNode next; // link to next node in the list }