Introduction to Data Structures | 10 most commonly used Data Structures
A data structure is a particular way of organizing data in a computer so that it can be used effectively. The idea is to reduce… Read More »
A data structure is a particular way of organizing data in a computer so that it can be used effectively. The idea is to reduce… Read More »
Given a Binary search tree, the task is to implement forward iterator on it with the following functions. curr(): returns the pointer to current element.… Read More »
Given two Binary search trees and an integer X, the task is to find a pair of nodes, one belonging to the first BST and… Read More »
Given a binary search tree, and an integer X, the task is to find if there exists a triplet with sum X. Print Yes or… Read More »
Given N elements and the task is to implement a stack which removes and returns the maximum frequency element on every pop operation. If there’s… Read More »
Given a string str consisting of a sentence, the task is to reverse the entire sentence word by word. Examples: Input: str = “geeks for… Read More »
Pre-requisite: GDB (Step by Step Introduction) A BufferOverflow often occurs when the content inside the defined variable is copied to another variable without doing Bound… Read More »
Given two Stacks, the task is to check if the given stacks are same or not. Two stacks are said to be same if they… Read More »
Given a stack with n elements, the task is to remove all the elements of the stack without affecting the order of elements. Examples: Input… Read More »
We have seen different ways of performing postorder traversal on Binary Trees. Post Order Traversal. Iterative Postorder Traversal using Two Stacks. Iterative Postorder Traversal using… Read More »
Give an array arr[] of N integers and another integer k ≤ N. The task is to find the maximum element of every sub-array of… Read More »
The task is to design a stack which can get the maximum value in the stack in O(1) time without using an additional stack. Examples:… Read More »
Given a binary tree, the task is to print all leaf nodes of the given binary tree from left to right. That is, the nodes… Read More »
Given a linked list containing N nodes and a positive integer K where K should be less than or equal to N. The task is… Read More »
Given a NxN matrix, the task is to find the sum of bit-wise OR of all of its rectangular sub-matrices. Examples: Input : arr[][] =… Read More »