public class CorsorNode { Object element; int next; public void CursorNode(Object x, int i){ element = x; next = i; } }