如何合并两个vector? merge

#include <iostream> #include <string> #include <vector> using namespace std; int main() { vector<string> vec1, vec2; vec1.push_back("aa"); vec1.push_back("bb"); vec1.push_back("cc"); vec2.pu
相关文章
相关标签/搜索