#data-structures
Read more stories on Hashnode
Articles with this tag
A binary search tree (BST) is a type of data structure used to store a collection of items, such as numbers or strings, in a way that allows for...
Stack A Stack is a linear data structure that follows the Last-In-First-Out (LIFO) principle. It means that the element which is inserted last will be...
A circular linked list is a data structure in which the nodes are connected in a circular fashion, forming a closed loop. Each node in the circular...
A doubly linked list is a data structure consisting of a sequence of nodes, each containing a value and two references: one to the previous node and...
A singly linked list is a linear data structure that is made up of nodes. Each node contains a data element and a reference to the next node in the...
A linked list is a linear data structure that consists of a sequence of nodes, where each node contains data and a reference to the next node in the...