What is Stack? A stack is a non-primitive linear data structure. it is an ordered list in which the addition
Continue readingCategory: C++ STL
queue in C++ STL
What is queue in C++ STL? A queue is a linear list of elements in which deletions can take place
Continue readingunordered_multimap in C++ STL
What is an unordered_multimap in C++ STL? unordered_multimap in STL are associative containers like unordered maps where each element consists
Continue readingmap in C++ STL
What is map in C++ STL? map in STL are associative containers where each element consists of a key value
Continue readingunordered_map in C++ STL
What is an unordered_map in STL? unordered_map in STL are associative containers where each element consists of a key value
Continue readingmultiset in C++ STL
What is a multiset in C++ STL? A multiset in STL is an associative container just like a set the
Continue readingUnordered-multiset in C++ STL
What is an Unordered-multiset? An unordered_multiset in STL is an associative container just like an unordered set the only difference
Continue readingSet in C++ STL
What is a set? A set in STL is a container that stores unique elements in a particular order. Every
Continue readingVector in C++ STL
What is a Vector? Vectors in STL are basically dynamic arrays that have the ability to change size whenever elements
Continue readingUnordered-set in C++ STL
What is an unordered set? An unordered set in STL is a container that stores unique elements in no particular
Continue reading