I have looked around and I can\'t really find an answer I can understand or it doesn\'t apply to me. I have this class:
class Node { public int value;
Try this basic iteration:
Node tmp = head; while (tmp != null) { //do your checking... tmp = tmp.next; }