Posts from C++

Program on Quicksort on Linked List in C++

By Yogender Narayan

In this tutorial, we are going to learn about Quicksort on Linked List in C++. Firstly we are going to look at linked list. Secondly about the quicksort and finally to combine the.... Read More

Program to Demonstrate Huffman Coding in C++

By Yogender Narayan

In this tutorial, we are going to learn about the Program to Demonstrate Huffman Coding in C++. Firstly there is an introduction of Huffman coding. Then implementation of the progr.... Read More

Transpose of a matrix using C++

By Aryan Parthasarthi

As we have learned about matrices in our high school mathematics, A matrix is a way of representation. In geometrical view, it’s a linear representation of a vector space for.... Read More

How to Reverse the Elements of an Array in C++

By Shanigaram Mahesh

In this tutorial, we will learn about  How to reverse the elements of an array in C++. Let us start with algorithm. Algorithm to reverse elements of a given array in C++ Let A be .... Read More

String after Backspaces in C++

By Shanigaram Mahesh

In this tutorial, we will learn how to backspace a letter from a word in C++. Something like erasing a letter as a backspace does, but this time with C++. Let us start with an intr.... Read More

How to make a grayscale image in C++ using OpenCV

By Muskan Agarwal

In this tutorial, we will learn how to convert a given image (RGB) to Grayscale using OpenCV in C++. We access an image existing already on our machine and then convert it to a gra.... Read More

Program to split and product the integer in all possible ways in C++

By Anne Caroline Glory Prince

In this tutorial, we will learn how to split the integer into 2 in all possible ways in C++ and the program prints the product of those integers as output. Input integer is obtaine.... Read More

Travelling Salesperson Problem using Dynamic Approach in C++

By Arijit Nayak

In this tutorial, we will learn about the TSP(Travelling Salesperson problem) problem in C++. In this tutorial, we will learn about what is TSP. Next, what are the ways there to so.... Read More

Related Posts