Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com
Last updated: Aug 7, 2022

More About STL Containers

Containers Library in STL gives us the Containers, which can be described as the objects used to contain data or rather a collection of objects. Containers help us to implement and replicate simple and complex data structures very easily like arrays, lists, trees, associative arrays, and many more. Let’s learn more about STL Containers.
Vectors vs Arrays EASY
This article extensively discusses the differences between arrays and vectors in various aspects.
Different Ways to Reverse a Vector EASY
This article talks about different ways to reverse a vector.
Different ways to initialize a vector in CPP EASY
In C++, a vector is a dynamic array provided by the Standard Template Library (STL) that can resize itself automatically when elements are added or removed. In this article we will discuss the common ways to initialize a vector in C++
emplace_back() vs push_back() in C++ Vectors EASY
This article focuses on push_back() and emplace_back()
Methods to copy in Vector EASY
This article incorporates the methods to copy in Vector.
Difference between Set, Multiset, Unordered_set and Unordered_multiset MEDIUM
This blog will cover the basics of a set, multiset, unordered_set and unordered_multiset and how they differ from each other in C++.
Internal implementation of std::sort() EASY
This article discusses Internal implementation of std::sort(), introsort and its implementation.
std::optional EASY
This blog will discuss std::optional in C++ with its member functions, examples with suitable code implementation along with some frequently asked questions.
Std::stoull and std::stoul in Cpp EASY
In this article, we have discussed the std::stoull and std::stoul functions in C++, where we have seen their application and characteristics with code.
Implement min heap in C++ EASY
In this blog, we will learn about the implementation of min heap in C++.
Design Twitter
In this blog, we will discuss an exciting OOPs problem, namely Design Twitter. We will design our simplified version of Twitter.