The Standard Template Library (STL) in C++ gives us a wide range of powerful tools and data structures to simplify our programming tasks. St...
Read More
(adsbygoogle = window.adsbygoogle || []).push({});
Map in C++ : Standard Template Library (STL)
What are maps in C++ in STL 1. Maps are used to replicate associative arrays. 2. Maps contain sorted key-value pair in which each key is u...
Read More
List Class in STL in C++
List class supports a bidirectional linear list. Vector supports random access but a list can be accessed sequentially only. List can be ac...
Read More
Vector class in STL in C++
Vector class in STL in C++ The most general purpose container in C++ is Vector. It supports a dynamic array. Array is fixed in size and the...
Read More
Tuple in STL in C++
STD :: Tuple in STL in C++ 1. Tuple is a template class in Standard Template Library (STL) in C++. 2. It is not a part of a container. 3. I...
Read More
STD :: Pair in C++ STL with Examples
STD :: Pair in C++ STL 1. Pair is a template class in Standard Template Library (STL) in C++. 2. It is not a part of a container. 3. It is...
Read More
STD :: Array in C++
STD :: Array in C++ 1. Linear collection of similar elements is called array (or collection of homogeneous elements is called array). 2. The...
Read More
Standard Template Library (STL) in C++
We hope you have already understood about Templates in C++ before knowing about STL(Standard Template Library) in C++. If you don't, th...
Read More
Nested Classes in C++
Nested Classes in C++ 1. Class inside a class is called nested class . 2. Nested classes are declared inside another enclosing class . 3. A...
Read More
Virtual Destructor in C++ with Examples
Virtual Destructor in C++ with Examples You should know the following before gaining information about virtual destructor. 1. What is a dest...
Read More
How to use Namespace in C++
Namespace in C++ 1. Namespace is a drum or container for identifiers. 2. Namespace puts the names of its members in a distinct space in such...
Read More
Subscribe to:
Posts (Atom)