Skip to content

Latest commit

 

History

History

LinkedLists

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Singly and Doubly LinkedLists

Example program that creates a singly and doubly LinkedList. Inserts and removes elements and then reverses the list.

Getting Started

Download, and then compile and run in your favorite editor.

Singly LinkedList

singly linkedlist operations Creates a singly LinkedList then adds two elements to the front of the list. Then adds an element to the end of the list and reverses the list order.

Doubly LinkedList

doubly linkedlist operations Creates a doubly LinkedList then adds two elements to the front of the list. Then adds an element to the end of the list and reverses the list order.

Authors

  • Ankit Sharma - *Original author *
  • James Hiegel - Added comments and additional functionality to original program

Source

https://www.c-sharpcorner.com/article/linked-list-implementation-in-c-sharp/