Courses
Tutorials
Practice
Data Structure
Java
Python
HTML
Interview Preparation
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
SQL
Web Development
System Design
Aptitude
GfG Premium
Similar Topics
Web Technologies
37.4K+ articles
Misc
8.8K+ articles
C++
4.3K+ articles
STL
1.3K+ articles
CPP-Functions
615+ articles
cpp-map
287+ articles
CPP-Library
254+ articles
cpp-unordered_map
231+ articles
cpp-set
202+ articles
cpp-priority-queue
53+ articles
cpp-tuple
18 posts
Recent Articles
Popular Articles
How to create an unordered_map of tuples in C++?
Last Updated: 28 October 2021
Tuple - A tuple is an object that can hold a number of elements. The elements can be of different data types. The elements of tuples are initialized as arguments in the or...
read more
C++
cpp-unordered_map
cpp-tuple
Set of Tuples in C++ with Examples
Last Updated: 15 December 2021
What is a tuple?A tuple is an object that can hold a number of elements. The elements can be of different data types. The elements of tuples are initialized as arguments i...
read more
C++
cpp-set
cpp-tuple
Priority Queue of Tuples in C++ with Examples
Last Updated: 23 November 2021
Priority QueuePriority 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...
read more
C++
STL
cpp-map
cpp-priority-queue
cpp-tuple
Multiset of Tuples in C++ with Examples
Last Updated: 14 February 2023
What is a tuple?A tuple in C++ is an object which binds a group of elements together. The elements can be similar as well as different data types. The elements of tuples a...
read more
C++
STL
cpp-multiset
cpp-tuple
unordered set of tuples in C++ with Examples
Last Updated: 19 December 2021
What is a tuple?A tuple in C++ is an object which is used to group elements together. In a tuple, elements can be of the same data type or different data types. The elemen...
read more
C++
cpp-unordered_set
cpp-tuple
Map of Tuples in C++ with Examples
Last Updated: 19 December 2021
What is a tuple?A tuple in C++ is an object that has the ability to group a number of elements. The elements can be of the same type as well as different data types. The o...
read more
C++
STL
cpp-map
cpp-tuple
Forward List and List of Tuples in C++ with Examples
Last Updated: 24 December 2021
What is Forward List?Forward list in STL is used to implement a singly linked list. It was introduced from C++11 onwards, forward lists are more useful than other containe...
read more
C++
STL
cpp-list
cpp-tuple
CPP-forward-list
2D Vector of Tuples in C++ with Examples
Last Updated: 20 February 2023
What is Vector?In C++, a vector is similar to dynamic arrays with the ability to resize itself automatically. Vector elements are stored in contiguous memory locations so ...
read more
C++
STL
cpp-vector
cpp-tuple
Multimap of tuples in C++ with Examples
Last Updated: 27 December 2021
What is a multimap?In C++, a multimap is an associative container that is used to store elements in a mapped fashion. Internally, a multimap is implemented as a red-black ...
read more
C++
STL
cpp-multimap
cpp-tuple
Deque of Tuples in C++ with Examples
Last Updated: 05 January 2022
What is deque?In C++, a deque is a sequence container and it is also known by the name, double-ended queue. As the name implies, a deque allows insertion and deletion from...
read more
C++
STL
deque
cpp-tuple
How to Create a Vector of Tuples in C++?
Last Updated: 22 February 2024
In C++, a tuple is an object that allows the users to store elements of various data types together while a vector is used to store elements of the same data types. In thi...
read more
C++ Programs
C++
Picked
STL
cpp-vector
cpp-tuple
CPP Examples
How to Create a Unordered Multiset of Tuples in C++?
Last Updated: 12 March 2024
In C++, an unordered multiset is a container that stores elements in no particular order, allowing fast retrieval of individual elements based on their value, much like un...
read more
C++ Programs
C++
Picked
STL
cpp-tuple
cpp-unordered_multiset
CPP Examples
How to Create a Unordered Multimap of Tuples in C++?
Last Updated: 12 March 2024
In C++, an unordered multimap container stores key-value pairs in no particular order. Unlike a map, an unordered multimap allows multiple values to be associated with a s...
read more
C++ Programs
C++
Picked
STL
cpp-multimap
cpp-tuple
CPP Examples
How to Create Stack of Tuples in C++?
Last Updated: 06 March 2024
In C++, a stack is a container adapter that provides a LIFO (Last In First Out) order of element insertion and deletion which is only possible at the end. A tuple is a con...
read more
C++ Programs
C++
Picked
STL
cpp-stack
cpp-tuple
CPP Examples
std::make_tuple() in C++
Last Updated: 20 March 2024
In C++, std::make_tuple() is a standard library function that constructs an object of std::tuple type using the arguments given to it. It can take any number and type of a...
read more
C++ Programs
C++
Picked
STL
cpp-tuple
CPP Examples
1
2
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !