
In this article, we have covered the applications of Linked List, Circular Linked List and Doubly Linked List. We start with the basics of Linked List and then, move to applications of the different types of Linked List.
Linked list 🤔
The linked list is a linear data structure, that has a sequence of continuous nodes. A single node is just the object which contains things like, "data" and a "next" pointer which points to the next node in case of singly and circular linked list, and also "previou...
Published on February 09, 2021 22:28