M3Rcrypt / doublyLinkedList

A doubly linked list (DLL) is a special type of linked list in which each node contains a pointer to the previous node as well as the next node of the linked list.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

doublyLinkedList

A doubly linked list (DLL) is a special type of linked list in which each node contains a pointer to the previous node as well as the next node of the linked list.

image (GeeksforGeeks)

The C code to implement doubly Linked List. There are several functions to create nodes, delete elements, insert elements, print in reversed order, print in non-reversed order etc.

About

A doubly linked list (DLL) is a special type of linked list in which each node contains a pointer to the previous node as well as the next node of the linked list.

License:MIT License


Languages

Language:C 100.0%