1,724 articles across 10 categories

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

Top Places to Visit in Auraiya, Uttar Pradesh
Featured

Top Places to Visit in Auraiya, Uttar Pradesh

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…

2 min read10 Aug 2018
Read article
How to implement PostOrder Traversal in Binary Tree?

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…

1 min9 Aug
How to implement InOrder Traversal in Binary Tree?

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…

1 min9 Aug
How to implement PreOrder Traversal in Binary Tree?

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 …

1 min9 Aug
Top Places to Visit in Amroha, Uttar Pradesh

Top Places to Visit in Amroha, Uttar Pradesh

Amroha (Jyotiba Phule Nagar) is a city in north-western Uttar Pradesh state in northern India, located north-west of Mor…

2 min9 Aug
What is a Tree Data Structure?

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…

2 min8 Aug
What is a Queue?

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…

1 min8 Aug
How can we get Minimum of Stack in a Constant Time O(1).

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…

1 min8 Aug
What is a Stack?

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…

1 min8 Aug
What is a Linked List?

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…

1 min8 Aug
Top Places to Visit in Amethi , Gauriganj, Uttar Pradesh

Top Places to Visit in Amethi , Gauriganj, Uttar Pradesh

Amethi is a town in the Indian state of Uttar Pradesh. It is a major town of the Amethi district, in the Faizabad divisi…

1 min8 Aug
Given two sorted Linked Lists, we need to merge them into the third list in sorted order.

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…

2 min7 Aug
Check whether the given Linked List length is even or odd?

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,…

1 min7 Aug
How will you display a linked list from the end?

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…

1 min7 Aug
How will you find the middle of the Linked List?

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…

2 min7 Aug
Blog β€” Page 109 | AskGif