Question: list = new LinkedListNode (); list.info-200; list.link= new LinkedListNode (); list.link.info=300; list.link.link=null; What is the output of the following code snippet? ptr= new LinkedListNode
list = new LinkedListNode (); list.info-200; list.link= new LinkedListNode (); list.link.info=300; list.link.link=null; What is the output of the following code snippet? ptr= new LinkedListNode (); ptr.info-3; ptr.link-list; list=ptr; L ptr= new LinkedListNode (); ptr.info=42; ptr.link-list.link; list.link-ptr; ptr = list; while (ptr != null) { System.out.println (ptr.info); ptr.link ptr = PH
Step by Step Solution
3.47 Rating (154 Votes )
There are 3 Steps involved in it
Output 3 200 42 Explanation 1 Initialized a linked list list with one node h... View full answer
Get step-by-step solutions from verified subject matter experts
