...

/

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 list
list.PrintList();
}
list.InsertAtHead(2);
list.PrintList(); //after adding more elements
list.InsertAtHead(4);
list.PrintList(); //after adding more elements
list.InsertAtHead(1);
list.PrintList(); //after adding more elements
string removeDuplicate = list.RemoveDuplicates(); // calling removeDuplicates function
Console.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 ...