摘要: C++中的一种数据结构,确切的说是一个类.它相当于一个动态的数组。 vector基本用法: #include<vector>//头文件 using namespace std;//命名空间 vector<int> Vec;//函数调用 int a; cin>>a; Vec.push_back(a); 阅读全文
posted @ 2021-09-13 20:51 kingwzun 阅读(109) 评论(0) 推荐(0) 编辑