Learn Stack Data-Structure From Scratch with Interview Questions
Data Structure

Search for a command to run...

Series
In this series, I will make blogs on every Data-Structures and Algorithms so you can learn it efficiently and easily.
Data Structure

Data-Structure

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 parts one part consists of the data to be stored and the other part stores the address of the next nod...

What is Recursion? The process in which a function calls itself either directly or indirectly is called recursion and the corresponding function is called a recursive function with recursion you can solve some complex problems quite easily examples ...

Hashing is a fundamental concept in computer science and is used in various applications, from data storage to cryptography. In this blog, we will explore the basics of hashing, its advantages, and the different types of hash functions. Additionally,...
