Posts from C++

CODECHEF April Cook-off ( Div. 2 ) – Making a Meal in C++

By Ravi Raj

In this C++ tutorial, we are going to discuss the codechef April Cook-off problem “Making a meal”. This problem uses the concept of string and basic mathematics only. P.... Read More

Dima and Bad Xor Problem – Codeforces ( Div. 2 )

By divyesh srivastava

  Problem Statement A matrix  ‘a’ of size n*m is filled with non-negative integers. We have to select exactly one integer from each row such that bitwise exclusiv.... Read More

Longest Common Subsequence using Dynamic Programming

By Ravi Raj

In this CPP tutorial, we are going to discuss how to find the length of a maximum common subsequence of two strings. Finding the Longest Common Subsequence using Dynamic Programmin.... Read More

Maximum size Square sub-with all 1’s in C++

By Ravi Raj

In this tutorial, we are going to discuss how to find maximum square sub-matrix with all 1’s and its size in a given binary matrix in C++. We will use a dynamic programming a.... Read More

Subset Sum Problem using DP in C++

By divyesh srivastava

In this CPP tutorial, we are going to discuss the subset sum problem its implementation using Dynamic Programming in CPP. We will also discuss Dynamic programming. Problem Statemen.... Read More

Football Game – Team Winner Problem

By Ravi Raj

In this CPP tutorial, we are going to discuss a football game problem similar type of question has been recently asked in a short contest on Codechef. Football Game Team winner pro.... Read More

Binary Search in CPP using Divide and Conquer Algorithm

By Ravi Raj

In this CPP tutorial, we are going to discuss the binary search algorithm using Divide and Conquer paradigm in C++ Binary search in C++ with Divide and Conquer Algorithm This tutor.... Read More

Build Binary Tree in C++ (Competitive Programming)

By Dolly Singh

Let’s start our journey of learning a hierarchical data structure (BINARY TREE) in C++. We will start from very basic of creating a binary tree with the help of class and fun.... Read More

Related Posts