The C library function isgraph() checks whether a character is a graphic character or not.
Characters that have graphical representation are known are graphic charac...
Share
The math.h header defines various mathematical functions and one macro. All the functions available in this library take double as an argument and return double as th...
Share
The Standard Template Library (STL) is a set of C++ template classes to provide common programming data structures and functions such as lists, stacks, arrays, etc. I...
Share
Sorting is one of the most basic functions applied to data. It means arranging the data in a particular fashion, which can be increasing or decreasing. There is a bui...
Share
Binary search is a widely used searching algorithm that requires the array to be sorted before search is applied. The main idea behind this algorithm is to keep divid...
Share
The pair container is a simple container defined in <utility> header consisting of two data elements or objects.
The first element is referenced as ‘fi...
Share
Lists are sequence containers that allow non-contiguous memory allocation. As compared to vector, list has slow traversal, but once a position has been found, inserti...
Share
Double ended queues are sequence containers with the feature of expansion and contraction on both the ends.
They are similar to vectors, but are more efficient in cas...
Share
Queues are a type of container adaptors which operate in a first in first out (FIFO) type of arrangement. Elements are inserted at the back (end) and are deleted from...
Share
Priority queues are a type of container adapters, specifically designed such that the first element of the queue is the greatest of all elements in the queue and elem...
Share