C++ STL中的 pair

pair 概述

pair 用于将两个可能是不同数据类型的值结合在一起。pair 提供了一种将两个异构对象存储为单个单元的方法。如果想存储元组,基本上会使用它。pair 容器是一个定义在 <utility> 头文件中的简单容器,由两个数据元素或对象组成。

  • 第一个元素通过 first 引用,第二个元素通过 second 引用,顺序是固定的 (first, second)
  • pair 可以赋值、拷贝和比较。map 和 hash_map 中分配的对象数组默认是 ’pair‘ 类型的,其中所有的 ’first‘ 元素都是与其 ‘second’ 值对象关联的唯一键。
  • 为了访问 pair 元素,使用变量名后跟.运算符,后跟关键字 first 或 second。

语法

pair<data_type1, data_type2> Pair_name

例子:

// CPP program to illustrate Pair in STL
#include <iostream>
#include <utility>
using namespace std;// Driver Code
int main()
{// defining a pairpair<int, char> PAIR1;// first part of the pairPAIR1.first = 100;// second part of the pairPAIR1.second = 'G';cout << PAIR1.first << " ";cout << PAIR1.second << endl;return 0;
}

输出

100 G

初始化Pair:也可以初始化pair。

语法

pair<data_type1, data_type2> Pair_name(value1, value2);

初始化 pair 的不同方法:

pair  g1;         //default
pair  g2(1, 'a');  //initialized,  different data type
pair  g3(1, 10);   //initialized,  same data type
pair  g4(g3);    //copy of g3

另一种初始化pair的方法是使用 make_pair() 函数。

g2 = make_pair(1, 'a');

另一种声明 pair 的有效语法是:

g2 = {1, 'a'};

代码示例:

// CPP program to illustrate
// Initializing of pair STL
#include <iostream>
#include <utility>
using namespace std;// Driver Code
int main()
{// defining a pairpair<string, double> PAIR2("GeeksForGeeks", 1.23);cout << PAIR2.first << " ";cout << PAIR2.second << endl;return 0;
}

输出:

GeeksForGeeks 1.23

注意: 如果没有初始化,会自动初始化 pair 的 first 值。

// CPP program to illustrate 
// auto-initializing of pair STL
#include <iostream>
#include <utility>using namespace std;int main()
{pair<int, double> PAIR1;pair<string, char> PAIR2;// it is initialised to 0cout << PAIR1.first; // it is initialised to 0cout << PAIR1.second; cout << " ";// // it prints nothing i.e NULLcout << PAIR2.first; // it prints nothing i.e NULLcout << PAIR2.second; return 0;
}

输出

00

成员函数

1)make_pair():这个模板函数允许在不显示写明类型的情况下创建 pair 值对。

语法

Pair_name = make_pair (value1,value2);

例子:

// CPP Program to demonstrate make_pair()
// function in pair
#include <iostream>
#include <utility>
using namespace std;// Driver Code
int main()
{pair<int, char> PAIR1;pair<string, double> PAIR2("GeeksForGeeks", 1.23);pair<string, double> PAIR3;PAIR1.first = 100;PAIR1.second = 'G';PAIR3 = make_pair("GeeksForGeeks is Best", 4.56);cout << PAIR1.first << " ";cout << PAIR1.second << endl;cout << PAIR2.first << " ";cout << PAIR2.second << endl;cout << PAIR3.first << " ";cout << PAIR3.second << endl;return 0;
}

输出

100 G
GeeksForGeeks 1.23
GeeksForGeeks is Best 4.56

2)swap:该函数交换两个 pair 对象的内容。两个 pair 必须是相同类型的。

语法

pair1.swap(pair2);

对于给定的两个同类型的 pair1 和 pair2,swap 函数会将 pair1.first 和 pair2.first 交换,pair1.second 和 pair2.second 进行交换。

例子:

// CPP Program to demonstrate swap()
// function in pair
#include <iostream>
#include <utility>using namespace std;// Driver Code
int main()
{pair<char, int> pair1 = make_pair('A', 1);pair<char, int> pair2 = make_pair('B', 2);cout << "Before swapping:\n ";cout << "Contents of pair1 = " << pair1.first << " "<< pair1.second;cout << "Contents of pair2 = " << pair2.first << " "<< pair2.second;pair1.swap(pair2);cout << "\nAfter swapping:\n ";cout << "Contents of pair1 = " << pair1.first << " "<< pair1.second;cout << "Contents of pair2 = " << pair2.first << " "<< pair2.second;return 0;
}

输出

Before swapping:Contents of pair1 = A 1Contents of pair2 = B 2
After swapping:Contents of pair1 = B 2Contents of pair2 = A 1

3)tie():此函数的工作原理与tuples(元组)相同。它创建了一个对其参数的左值引用元组,即将元组(此时是pair)拆包为单独的变量。就像在元组中一样,这里也有 tie 的两种变体,有和没有“ignore”。“ignore” 关键字会忽略特定的元组元素,使其无法拆包。

但是,元组可以有多个参数,但是pair只能有两个参数。因此,在pair的情况下,需要显式处理拆包。

语法

tie(int &, int &) = pair1; 

例子:

// CPP code to illustrate tie() in Pair
#include <bits/stdc++.h>
using namespace std;// Driver Code
int main()
{pair<int, int> pair1 = { 1, 2 };int a, b;tie(a, b) = pair1;cout << a << " " << b << "\n";pair<int, int> pair2 = { 3, 4 };tie(a, ignore) = pair2;// prints old value of bcout << a << " " << b << "\n";// Illustrating pair of pairspair<int, pair<int, char> > pair3 = { 3, { 4, 'a' } };int x, y;char z;// tie(x,y,z) = pair3; Gives compilation error// tie(x, tie(y,z)) = pair3; Gives compilation error// Each pair needs to be explicitly handledtie(x,ignore) = pair3;tie(y, z) = pair3.second;cout << x << " " << y << " " << z << "\n";
}// contributed by sarthak_eddy.

输出

1 2
3 2
3 4 a

说明pair中函数的代码:

// CPP program to illustrate pair in STL
#include <iostream>
#include <string>
#include <utility>
using namespace std;int main()
{pair<string, int> g1;pair<string, int> g2("Quiz", 3);pair<string, int> g3(g2);pair<int, int> g4(5, 10);g1 = make_pair(string("Geeks"), 1);g2.first = ".com";g2.second = 2;cout << "This is pair g" << g1.second << " with "<< "value " << g1.first << "." << endl<< endl;cout << "This is pair g" << g3.second << " with value "<< g3.first<< "This pair was initialized as a copy of "<< "pair g2" << endl<< endl;cout << "This is pair g" << g2.second << " with value "<< g2.first << "\nThe values of this pair were"<< " changed after initialization." << endl<< endl;cout << "This is pair g4 with values " << g4.first<< " and " << g4.second<< " made for showing addition. \nThe "<< "sum of the values in this pair is "<< g4.first + g4.second << "." << endl<< endl;cout << "We can concatenate the values of"<< " the pairs g1, g2 and g3 : "<< g1.first + g3.first + g2.first << endl<< endl;cout << "We can also swap pairs "<< "(but type of pairs should be same) : " << endl;cout << "Before swapping, "<< "g1 has " << g1.first << " and g2 has "<< g2.first << endl;swap(g1, g2);cout << "After swapping, "<< "g1 has " << g1.first << " and g2 has "<< g2.first;return 0;
}

输出

This is pair g1 with value Geeks.This is pair g3 with value QuizThis pair was initialized as a copy of pair g2This is pair g2 with value .com
The values of this pair were changed after initialization.This is pair g4 with values 5 and 10 made for showing addition. 
The sum of the values in this pair is 15.We can concatenate the values of the pairs g1, g2 and g3 : GeeksQuiz.comWe can also swap pairs (but type of pairs should be same) : 
Before swapping, g1 has Geeks and g2 has .com
After swapping, g1 has .com and g2 has Geeks

时间复杂度 O ( 1 ) O(1) O(1)
空间复杂度 O ( 1 ) O(1) O(1)

Pair 中的运算符(=, ==, !=, >=, <=)

pair 中也可以使用运算符。

1)使用等于(=):为pair对象赋值一个新对象。语法:

pair& operator= (const pair& pr);

赋值“pr” 作为 “pair” 对象的新内容。first 值被赋值为 pr 的first 值,second值被赋值为 pr 的second 值。

2)pair 的比较运算符(==):给定的 pair1 和 pair2,比较运算符比较两个pair的 first 值和 second 值,即 pair1.first 是否等于 pair2.first 以及 pair2.first 是否等于 pair2.second。

即 是否 ((pari1.first ==pair2.first) && (pair1.second==pair2.second))

两个条件中的任意一个是 false,就返回 false,否则返回 true。

3)pair的不等运算符(!=):给定的 pair1 和 pair2,!= 运算符比较两个pair的first值,即 pair1.first 是否等于 pair2.first,如果相等,检查两个 pair 的 second 值。

4)pair的逻辑运算符(>=, <=):对于给定的两个 pair,比如 pair1 和 pair2,=,>也可以与 pair 一起使用。它通过比较 pair 的第一个值来返回 0 或者 1。对于像 p1=(1,20) 和 p2=(1,10) 这样的对,p2 < p1 应该结果为0(因为它只比较第一个元素是否相等,所以它肯定不小于),但是这是不对的。在这里,pair 比较第二个元素,如果它满足,则返回1(只有当第一个元素在仅使用关系运算符 > 或 < 相等时才会出现这种情况,否则这些运算符的工作方式如上所示)。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/617783.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

匠心科技BLDC开发板原理图讲解

匠心科技BLDC开发板资料 链接&#xff1a;https://pan.baidu.com/s/1s5YjzRSDLKQvl86lBVAqKA?pwda6cx 提取码&#xff1a;a6cx 解压密码&#xff1a;JXKJ_RALDNWB站视频讲解&#xff08;&#xff09; 链接: 匠心科技直流无刷电机开发板原理图讲解 BLDC的开发板主要分为四个模…

【PythonCode】eval()函数巩固和复数模运算等

【PythonCode】eval()函数巩固和复数模运算等 前言 在很多高大上的项目中&#xff0c;一个花费很长时间、消耗大量人力物力才查出来的BUG&#xff0c;经常是一个符号错误、一个值传错、一个基本函数的用法没有考虑周到等基本问题&#xff0c;所以基础不牢、地动山摇&#xff0…

Linux的权限(1)

目录 操作系统的"外壳"程序 外壳程序是什么&#xff1f; 为什么存在外壳程序&#xff1f; 外壳程序怎么运行操作&#xff1f; 权限 什么是权限&#xff1f; 权限的本质&#xff1f; Linux中的&#xff08;人&#xff09;用户权限&#xff1f; su和su -的区别…

2024 1.6~1.12 周报

一、上周工作 论文研读 二、本周计划 思考毕业论文要用到的方法或者思想&#xff0c;多查多看积累可取之处。学习ppt和上周组会内容、卷积神经网络。 三、完成情况 1. 数据训练的方式 1.1 迁移学习 迁移学习是一种机器学习方法&#xff0c;把任务 A 训练出的模型作为初始模…

react 项目结构配置

1 项目整体目录结构的搭建 如下图&#xff1a; 2 重置css样式: normalize.css reset.less ; 第一步 安装 npm i normalize.css 入口文件index.tsx导入&#xff1a;import ‘noremalize.css’ 第二步 创建自己的css样式&#xff1a;在assets文件夹中创建css…

常用冷凝器的传热系数与单位换热面积推荐数据

制冷剂 氨 立式壳管式 700~800 传热系数W/m2℃ 3000~4000 单位面积热负荷W/m2 &#xff08;1&#xff09;温升2~3℃ &#xff08;2&#xff09;传热温差4~6℃ &#xff08;3&#xff09;单位面积冷水耗量1~1.7m3/m2h &#xff08;4&#xff09;光钢管 &#xff08;5&#xf…

【设计模式-03】Strategy策略模式及应用场景

一、简要描述 Java 官方文档 Overview (Java SE 18 & JDK 18)module indexhttps://docs.oracle.com/en/java/javase/18/docs/api/index.html Java中使用到的策略模式 Comparator、comparable Comparator (Java SE 18 & JDK 18)declaration: module: java.base, pa…

JAVA进化史: JDK14特性及说明

JDK 14于2020年3月发布。这个版本引入了一些新特性和改进&#xff0c;以下是其中一些主要特性 JEP 361: 进一步改进了switch表达式 进一步改进了switch表达式&#xff0c;引入了新的用法和语法。 // 使用标准的switch表达式 int day 3; String dayType switch (day) {case…

js(JavaScript)数据结构之散列表(Hash)

什么是数据结构&#xff1f; 下面是维基百科的解释&#xff1a; 数据结构是计算机存储、组织数据的方式。数据结构意味着接口或封装&#xff1a;一个数据结构可被视为两个函数之间的接口&#xff0c;或者是由数据类型联合组成的存储内容的访问方法封装。 我们每天的编码中都会…

web学习笔记(十五)

目录 1.Date对象 1.1日期对象的概念 1.2Date()方法的使用 1.3Date()常用方法汇总 1.4例题&#xff1a;用函数编写一个倒计时 2.函数 2.1函数的概念 2.2函数的使用 2.3函数的参数 2.4函数的声明 2.5函数的返回值 2.6异步函数 3特殊函数类型 3.1匿名函数 3.2箭头函数…

前端开发中需要注意的CSS命名规则以及书写顺序

1、CSS的命名——BEM规则&#xff1a; CSS命名一般是用 BEM 规则命名的。它背后的想法是将用户界面划分为独立的块。 BEM的意思就是B模块(block)、E元素(element)、M修饰符(modifier)&#xff0c; 即&#xff1a;[block]__[element]--[modifier]。 模块和子元素之间用两个下划…

SPARK--cache(缓存)和checkpoint检查点机制

SPARK–cache(缓存)和checkpoint检查点机制 rdd的特性 缓存和checkpoint 作用都是进行容错rdd在计算是会有多个依赖&#xff0c;为了避免计算错误是从头开始计算&#xff0c;可以将中间* 依赖rdd进行缓存或checkpoint缓存或checkpoint也叫作rdd的持久化一般对某个计算特别复杂的…

[Flutter] extends、implements、mixin和 abstract、extension的使用介绍说明

类创建&#xff1a;abstract&#xff08;抽象类&#xff09;、extension&#xff08;扩展&#xff09; 1.abstract&#xff08;抽象类&#xff09; dart 抽象类主要用于定义标准&#xff0c;子类可以继承抽象类&#xff0c;也可以实现抽象类接口。抽象类通过abstract 关键字来…

一端进,两端出(队列)C++

*给定一个输入受限的双端队列&#xff08;即一个端点允许插入和删除&#xff0c;另一个端点只允许删除的双端队列&#xff09;和一个长度为 N 的插入序列。插入序列中的元素两两不同。你需要将插入序列中的元素按顺序依次插入到给定队列中。 在插入过程中和插入完成后的任意时…

【软件测试】学习笔记-静态测试方法

这篇文章详细讨论人工静态测试方法和自动静态测试方法&#xff0c;来帮你理解研发流程上是如何保证代码质量的&#xff0c;以及如何搭建自己的自动静态代码扫描方案&#xff0c;并且应用到项目的日常开发工作中去。 人工静态方法本质上属于流程上的实践&#xff0c;实际能够发…

QEMU源码全解析 —— PCI设备模拟(7)

接前一篇文章&#xff1a; 上一回讲解了pci_edu_realize函数中的pci_register_bar函数&#xff0c;本回开始对于edu设备的MMIO读写函数进行解析。 操作系统与PCI设备交互的主要方式是PIO和MMIO。MMIO虽然是一段内存&#xff0c;但是其没有EPT映射&#xff0c;在虚拟机访问设备…

Smallpdf扫描、转换、压缩、编辑、签名PDF

【应用名称】&#xff1a;Smallpdf: 扫描、转换、压缩、编辑、签名PDF 【适用平台】&#xff1a;#Android 【软件标签】&#xff1a;#Smallpdf 【应用版本】&#xff1a;1.71.0 【应用大小】&#xff1a;150MB 【软件说明】&#xff1a;通过 Smallpdf&#xff0c;您可以&…

数据结构 模拟实现二叉树(孩子表示法)

目录 一、二叉树的简单概念 &#xff08;1&#xff09;关于树的一些概念 &#xff08;2&#xff09;二叉树的一些概念及性质 定义二叉树的代码&#xff1a; 二、二叉树的方法实现 &#xff08;1&#xff09;createTree &#xff08;2&#xff09;preOrder &#xff08;…

资源三号03星-立体测绘卫星星座

资源三号03星作为我国民用高分辨率立体测图卫星资源三号系列的第三颗卫星&#xff0c;在资源三号02星技术状态的基础上进行了继承和适当优化&#xff0c;设计寿命由资源三号02星的5年延长至8年&#xff0c;星上搭载了三线阵立体测绘相机、多光谱相机和业务化应用的激光测高仪&a…

【模型评估 07】过拟合与欠拟合

在模型评估与调整的过程中&#xff0c;我们往往会遇到“过拟合”或“欠拟合”的情况。如何有效地识别“过拟合”和“欠拟合”现象&#xff0c;并有针对性地进行模型调整&#xff0c;是不断改进机器学习模型的关键。特别是在实际项目中&#xff0c;采用多种方法、从多个角度降低…