c_cpp 矢量➡集

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 矢量➡集相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <set>
#include <vector>
using namespace std;

int main() {
	vector<int> v1 = { 1, 1, 2, 2, 3, 3, 3 };
	set<int> s1(v1.begin(), v1.end());
	for (auto val : v1) {
		cout << val << " ";
	}
	cout << endl;
	// 1 1 2 2 3 3 3
	for (auto val : s1) {
		cout << val << " ";
	}
	cout << endl;
	// 1 2 3
	return 0;
}

以上是关于c_cpp 矢量➡集的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 删除删除矢量

c_cpp 打印矢量

c_cpp 比较矢量

c_cpp 矢量类示例

c_cpp 数组与矢量C ++

c_cpp 数组初始化矢量