Pair in C++

Learn via video course
FREE
View all courses
C++ Course: Learn the Essentials
C++ Course: Learn the Essentials
by Prateek Narang
1000
5
Start Learning
C++ Course: Learn the Essentials
C++ Course: Learn the Essentials
by Prateek Narang
1000
5
Start Learning
Topics Covered

A pair in C++ is described as a container that combines two elements of the same or different data types in C++. Pair in C++ consists of two elements, first and second (must be in this order),  and they are accessed using the dot (.) operator and the keyword first or second.

What Is A Pair In C++?

Pair in C++ behaves similarly to tuple in python. It consists of two elements {first, second}. The first element is referred to as first while the second element is referred to as second. This order must be fixed (first, second). The header file for Pair in C++ is <utility>, and it is also a container class in STL (standard template library).

Transform Your Career

Choose from our industry-leading programs designed for career success

NSDC Certified

Modern Software and AI Engineering Program

Master full-stack development with AI integration

12 MonthsDuration
AI-LedCurriculum
Career SupportSupport
GoogleAmazonPaytm+1000 more
Go to Program
NSDC Certified

Modern Data Science and ML with specialisation in AI

Advanced data science techniques with AI specialization

12 MonthsDuration
AI-LedCurriculum
Career SupportSupport
GoogleAmazonPaytm+1000 more
Go to Program
NSDC Certified

Advanced AIML with Specialisation in Agentic AI

Deep dive into AIML with focus on Agentic systems

12 MonthsDuration
AI-LedCurriculum
Career SupportSupport
GoogleAmazonPaytm+1000 more
Go to Program
NSDC Certified

DevOps, Cloud & AI Platform Engineering

Build and manage AI-powered cloud infrastructure

12 MonthsDuration
AI-LedCurriculum
Career SupportSupport
GoogleAmazonPaytm+1000 more
Go to Program
NSDC Certified

AI Engineering Advanced Certification by IIT-Roorkee

Premier AI engineering certification from IIT-Roorkee

3 MonthsDuration
AI-LedCurriculum
Career SupportSupport
Program highlights
Go to Program

Basic Syntax

The syntax to declare pair in C++ is as follows.

Parameters:

  • data_type1 : data type of first element.
  • data_type2 : data type of second element.

C++ Pair STL Functions

FunctionDescriptionSyntax
make_pair()It makes it possible to create a value pair without explicitly writing the data types.pair1 = make_pair(data1, data2);
swap()It swaps the contents of one pair object with the contents of another pair object. The pairs have to be of the same kind.pair1.swap(pair2)
tie()It unpacks the pair values into independent variables by creating a pair of lvalue references to its arguments.tie(int &, int &) = pair1;

Note: Actually, tie() is not a pair STL function. This is for tuples but can be used with pairs as well. Also, it requires a tuple header file to be used.

Example Explaining Pair STL functions

Output:

We can observe that we can access the pair elements using the (.) operator and see how the swap and tie function works in pairs.

Nested Pairs

We can use nested pairs, also. The syntax to declare nested pairs in C++ is as follows :

Parameters:

Here, we have a nested pair, i.e., a pair's first or second element is itself a pair.

  • dt1: data type of the first element.
  • dt2: data type of the second element.
  • dt3: data type of the third element.

Let's understand nested pairs with an example :

Output:

We can observe that we can create nested pairs that can be accessed using first and second with the (.) operator.

Scaler Placement Report and Statistics

₹23L
AVG CTC
SCALER PLACEMENT PROOF

Scaler learners achieved 2.5x salary growth with average post-Scaler CTC reaching ₹23L.

11,000+placements
650+companies
Verified data

Conclusion

  • A pair in C++ is described as a container that combines two elements of the same or different data types.
  • The header file for pair in C++ is <utility>.
  • There are various pair STL functions, such as make_pair(), tie(), and swap().
  • We can use nested pairs, i.e., a pair's first or second element can be a pair itself.

See Also:

Hiring Partners:
GoogleGoogleAmazonAmazonMicrosoftMicrosoftFlipkartFlipkartAdobeAdobe1200+ more