Stories, Tutorials
& Life Tips
Deep dives on coding, health, recipes, travel and everything in between.
📍 Explore Reading Paths
Follow curated journeys from beginner to expert

औरय्या में देखने के लिए शीर्ष स्थान, उत्तर प्रदेश
Auraiya is a city and a municipal board in Auraiya district in the state of Uttar Pradesh, India. It is district headquarters as well. NH 19 passes through the center of the town. Dibiyapur RS is near…

How to implement PostOrder Traversal in Binary Tree?
PostOrder Traversal is different from InOrder Traversal and PreOrder Traversal. In this Traversal approach we first trav…

How to implement InOrder Traversal in Binary Tree?
The Technique for traversal in an Inorder is slightly different from what we were doing in PreOrder Traversal. Here we g…

How to implement PreOrder Traversal in Binary Tree?
In pre-order traversal, each node is processed before (pre) either of it's sub-trees. This is the simplest traversal to …

अमरोहा में देखने के लिए शीर्ष स्थान, उत्तर प्रदेश
Amroha (Jyotiba Phule Nagar) is a city in north-western Uttar Pradesh state in northern India, located north-west of Mor…

What is a Tree Data Structure?
A tree is a data structure similar to a linked list but instead of each node pointing simply to the next node in a linea…

What is a Queue?
A queue is a data structure used for storing data (similar to Linked Lists and Stacks). In a queue, the order in which d…

How can we get Minimum of Stack in a Constant Time O(1).
It is required to create a method getMinimum() which will give us the minimum in the current stack in O(1) time complexi…

What is a Stack?
A stack is a simple data structure used for storing data (similar to Linked Lists). In stack the order in which the data…

What is a Linked List?
A linked list is a data structure used for storing collections of data. A linked list has the following properties. - S…

अमेठी में देखने के लिए शीर्ष स्थान, गौरीगंज, उत्तर प्रदेश
Amethi is a town in the Indian state of Uttar Pradesh. It is a major town of the Amethi district, in the Faizabad divisi…

Given two sorted Linked Lists, we need to merge them into the third list in sorted order.
We are Given two Linked Lists which are already sorted. We need to create a new linked list using these two linked lists…

Check whether the given Linked List length is even or odd?
The question is to find if the given linked list length is even or odd in optimum time. We will use a fast pointer,…

How will you display a linked list from the end?
Traverse recursively till the end of the linked list. While returning back, we can print the elements. This approach wil…

How will you find the middle of the Linked List?
To find the middle of a linked list we can use many approaches. let's discuss our first approach having O(n) time comple…