#dsa
Read more stories on Hashnode
Articles with this tag
Another simplest data structure after stack is the "Queue" data structure. As we know the stack data structure is based on LIFO (Last In, First Out),...
We covered array and linked lists in previous article. Now we got a much simpler data structure "Stack". It represents a simple list which only allows...
Alright, we covered singly linked list in the previous article, now it's time for a doubly linked list, which to be honest isn't that different much...
We learned our first data structure "Arrays" in the last article. Now, its time to move on to "Linked Lists". Unlike arrays, linked list data...
What is an Array? An array is just a collection of variables stored at contiguous locations in the memory. Explanation It is the simplest data...
In this series, we will go through all of the concept related to Data Structures and Algorithms. We will use the most loved programming language C++...