#competitive-programming
Read more stories on Hashnode
Articles with this tag
MAP DESCRIPTION: A container that represents an associative array of key-value pairs. Allows efficient retrieval of values based on their associated...
SET DESCRIPTION: A container that represents a sorted set of unique elements. Ensures that the elements are stored in sorted order according to the...
DESCRIPTION A container that represents a priority queue, implementing a binary heap to maintain elements in a specific order (max heap or min...
DESCRIPTION A container that follows the First-In-First-Out (FIFO) principle, where the first element added is the first one to be removed. Provides...
STL : In C++, "STL" stands for the Standard Template Library. It is a powerful set of C++ template classes to provide general-purpose classes and...