Posts from C++

Add text watermark to an image in C++

By Pritam Hande

In this tutorial, we will learn how to add text watermark to an image in C++ using OpenCV. For doing so we are going to use OpenCV. Before proceeding further let’s first unde.... Read More

Install OpenCV C++ with Visual Studio

By Pritam Hande

In this article, we will see the procedure of installing and linking OpenCV C++ to Visual Studio on Windows PC.  This procedure will be the same for PC with Mac OS with some minor.... Read More

Edit Distance problem (dynamic programming) in C++

By Vishal Kumar

In this problem, we are going to learn how to change a string 1 to string 2 in C++  which is called Edit distance problem using the following operations. Insert Remove Replace Usi.... Read More

How to detect special character in a string in C++

By Vishal Kumar

In this post, we are going to learn about how to detect special character in a string in C++. All characters except alphabets and digits are regarded as special characters in C++.Â.... Read More

Finding Minimum Cost Path in a 2-D Matrix in C++

By Vishal Kumar

In this tutorial, we are going to solve a particular problem which is how to find Minimum Cost Path in a 2-D Matrix in C++. We are going to use dynamic programming to solve this pr.... Read More

Find the smallest missing number in an array in C++

By Vishal Kumar

In this tutorial, we are going to learn how to find the smallest missing number in an array in C++. We can solve this problem either by using a linear search or by using binary sea.... Read More

Add prefix or suffix to each element in a list in C++

By Pritam Hande

In this tutorial, we will learn how to add prefix or suffix to each element in a list in C++. Before proceeding for implementation let’s first understand what do you mean by .... Read More

Bellman Ford algorithm in C++

By Pritam Hande

In this tutorial, we will learn about the bellman ford algorithm and its implementation in C++. Bellman-Ford algorithm: is a single source shortest path algorithm that is used to f.... Read More

Related Posts