Latest posts tagged on "Data Structures"


C# program for Doubly Linked List

Data Structures     2051
4 Comments    

A linked list is a linear data structure that contains a series of connected nodes. Each node contains data and the address of the next node.

Linked list can be of singly, doubly and circular types. In this article, we will focus on the implementations of doubly linked list.



C# program for Singly Linked List

Data Structures     2027
4 Comments    

A linked list is a linear data structure that contains a series of connected nodes. Each node contains data and the address of the next node.

Linked list can be of singly, doubly and circular types. In this article, we will focus on the implementations of singly linked list.