Tag: linked list implementation in c
Data Structure
The memory efficient doubly linked list, also known as XOR linked list is a modification of doubly linked list where each node is same as the node of
Read More Data Structure
A doubly linked list is an advanced form of linked list which has the ability to traverse back and forth i.e. in both the direction. It possesses an
Read More Data Structure
In a circular linked list all nodes are connected in a continuous cycle. Each node has two part Data and Next as a singly linked list has. The
Read More