Question: Question 1 1 Identify the error in the SinglyLinkedList class's search ( ) method below. 0 SinglyLinkedNode currentNode = head; if ( currentNode . data
Question
Identify the error in the SinglyLinkedList class's search method below.
SinglyLinkedNode currentNode head; if currentNodedata dataValueThe while condition should be
The statement
currentNode currentNode.next
should be
currentNode head
The statement SinglyLinkedNode currentNode head should be SinglyLinkedNode currentNode tail.
The if condition should be if currentNode data dataValue
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
