...
/Solution Review: Remove Duplicates From a Linked List
Solution Review: Remove Duplicates From a Linked List
This review provides a detailed analysis of the different ways to solve the "Remove Duplicates From a Linked List" challenge.
We'll cover the following...
Solution #
Press + to interact
main.cs
LinkedList.cs
using System;namespace chapter_3{class Challenge_8{static void Main(string[] args){LinkedList list = new LinkedList();for (int i = 1; i < 4; i++){list.InsertAtHead(i); // inserting value in the listlist.PrintList();}list.InsertAtHead(2);list.PrintList(); //after adding more elementslist.InsertAtHead(4);list.PrintList(); //after adding more elementslist.InsertAtHead(1);list.PrintList(); //after adding more elementsstring removeDuplicate = list.RemoveDuplicates(); // calling removeDuplicates functionConsole.WriteLine("List after deleting duplicates from list :" + removeDuplicate);return;}}}
In this implementation, check each node against the remaining list to see if a node contains an ...