Posts from C++

Convert Roman Number Into Integer using STL in C++

By Rahul Ranjan

Hello Friends, Today we are going to learn how to convert roman number into integer in C++ using STL. This problem you can do also using the stack as well as using STL. I will give.... Read More

Tree Isomorphism Problem in C++

By Ranjeet V

Hello everyone, in this tutorial we will discuss the tree isomorphism problem in C++. Two trees are said to be isomorphic if one of the trees can be obtained by flipping left and r.... Read More

atol(), atoll() and atof() functions in C++

By Vishal Patil

Hello everyone, in this tutorial, we will learn about the atol() , atoll() and atof() functions available in C++. atol() function atol() function is used to convert string value in.... Read More

Convert a Vector to Set in C++

By Sonal Bera

In this tutorial, we try to convert a vector of elements into a set of elements in C++. Vectors in C++ are not new but are in fact containers similar to arrays that can expand or s.... Read More

How to check if a given string is binary or not in C++

By Anurag Tiwari

In this tutorial, we will learn how to check if a given string is binary or not in C++. This problem can be considered as a subset of string problems in which we check for the pres.... Read More

Find the repeating and missing number in an array(C++)

By Prayas Sambhare

In this post, we are going to find the repeating and missing number in an array in C++. It is a famous question about array implementation. Let us understand the problem first. Und.... Read More

Solve Stock Span Problem in C++

By Prayas Sambhare

Hello! In this post, we will study the stock span problem with the help of the C++ program. Let us understand the problem first. You are given a list of ‘n’ daily price.... Read More

Naming Conventions for member variables in C++

By Tanu Kumari

In this tutorial, we will discuss C++ Naming Conventions for member variables and what are the benefits of following the naming convention. Firstly, Learn about the Naming Conventi.... Read More