CSC300: The End [5/7] |
Now figure out what to do if you hit null.
11 |
public void insert (double item) { Node x = first; while (x.next != null && x.next.item < item) { x = x.next; } Node y = new Node (item, null); Node f = x.next; x.next = y; y.next = f; } |
Passes more tests