Remove Duplicates from an unsorted Linked list. | Algorithms
Objective: Write a program to remove the duplicates from an unsorted linked list
Example:
Input Linked List : 1->2->2->4->3->3->2
Output : 1->2->4->3
Input: An unsorted linked list
Output: Linked list with no duplicates.
Approach:
- Create a Hash Table
- Take two pointers, prevNode and CurrNode.
- PrevNode will point to the head of the linked list and currNode will point to the head.next.
- Now navigate through the linked list.
- Check every node data is present in the HashTable.
- if yes then delete that node using prevNode and currNode.
- If No, then insert that node data into the linked list
- Return the head of the list
Time Complexity : O(n)
Space Complexity : O(n)
Read full article from Remove Duplicates from an unsorted Linked list. | Algorithms
No comments:
Post a Comment