171819202122232425
public static void main(String[] args) { LinkedListNode head = AssortedMethods.randomLinkedList(10, 0, 10); System.out.println(head.printForward()); deleteNode(head.next.next.next.next); // delete node 4 System.out.println(head.printForward()); } }