Question: JAVA Write a function in pseudocode named removeDuplicates(), which takes a singly linked list sorted in increasing order and deletes any duplicate nodes from the

JAVA Write a function in pseudocode named removeDuplicates(), which takes a singly linked list sorted in increasing order and deletes any duplicate nodes from the list. The list should only be traversed once and the routine should not call any other routine. For example if the linked list is 11->11->11->21->43->43->60 then removeDuplicates() should convert the list to 11->21->43->60 Input: the head node of the linked list Output: Your function should return a pointer to the head of linked list with no duplicate element
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
