CSC300: Common mistakes: Does this work? [6/10] |
01 |
public int numFives () { if (first == null) return 0; int result = 0; if (first.item == 5.0) result = result + 1; Node x = first; while (x.next != null) { if (x.next.item == 5.0) result = result + 1; x.next = x.next.next; } return result; } |