Traversing...singly LLL
Lets examine this further:
node * current=head;
node * previous= NULL;
while (current && current->data
!= match) {
previous = current;
current = current->next;
}
Count the number of operations, fetches...