Remove elements from the linked list : LinkList : Data Structure C# Examples


C# Examples » Data Structure » LinkList »

 

Remove elements from the linked list









    
using  System;    
using  System.Collections.Generic;    
    
class  MainClass  {    
    public  static  void  Main()  {    
        //  Create  an  linked  list.  
        LinkedList<char>  ll  =  new  LinkedList<char>();    
            
        Console.WriteLine("Adding  5  elements.");    
        //  Add  elements  to  the  linked  list    
        ll.AddFirst('A');    
        ll.AddFirst('B');    
        ll.AddFirst('C');    
        ll.AddFirst('D');    
        ll.AddFirst('E');    


        Console.WriteLine("Removing  2  elements.");    
        ll.Remove('C');    
        ll.Remove('A');    
    
        Console.WriteLine("Number  of  elements:  "  +    
                                              ll.Count);    
    }
}
    
   
  
   



Output

Adding 5 elements.
Removing 2 elements.
Number of elements: 3


HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Data Structure
» LinkList