public class IntListNode { int value; IntListNode nextNode; IntListNode prevNode; public IntListNode(int value, IntListNode nextNode, IntListNode prevNode) { this.value = value; this.nextNode = nextNode; this.prevNode = prevNode; } }