Select Page

How to Sort a Vector in C++

You can sort a vector in C++ using the std::sort function. This tutorial will go through how to sort a vector in ascending and descending order. Table of contentsSort a Vector using std::sortSort a Vector in Descending Order using std::sortSummary Sort a Vector using...

How to Check if a Vector Contains an Element in C++

This tutorial will go through how to find an element in a C++ vector and how to count the number of occurrences of an element with the help of code examples. Table of contentsA Brief Introduction on Vectors in C++Find Element in C++ Vector Using std::find()Return...

How to Do Bubble Sort in C++

Bubble sort is a popular sorting algorithm that compares the adjacent elements in a list and swaps them if they are not in the specified order. This tutorial will go through how to implement the bubble sort algorithm in C++ with the help of code examples. Table of...

How to Convert String to Float/Double in C++

This tutorial will go through how to convert a String to a float/double and vice versa. Table of contentsWhy Convert Strings to Float/Double?Strings in C++Convert String to Float in C++Convert String to Double in C++Convert Char Array to Float in C++Convert Char Array...

How to Convert Char Array to String in C++

A C++ string variable contains a collection of characters surrounded by double-quotes. There are two types of strings used in C++. C-strings, which are arrays of type char terminated by the null character \0.Strings that are objects of the Standard C++ Library string...