Articles in this series
Data Structure · Stack is a linear Data-Structure following First In Last Out(FILO) order ie. The last element in a stack will be removed...
Data-Structure · Heap is a special Tree based Data-Structure in which the tree is a complete binary tree. It is generally of two types - Max-heap -...
A Linked List is a data structure which can change during the execution it consists of a set of nodes linked together each node is divided into two...
What is Recursion? The process in which a function calls itself either directly or indirectly is called recursion and the corresponding function is...
Hashing is a fundamental concept in computer science and is used in various applications, from data storage to cryptography. In this blog, we will...