C++中,如何将std::vector<std::string> result这个数组清空
时间: 2024-01-19 09:04:38 浏览: 119
在C++中,可以使用以下两种方法清空 `std::vector<std::string>` 数组:
1. 使用`clear()`函数清空:
```c++
std::vector<std::string> result;
// 向 result 中添加一些元素
result.clear(); // 清空 result 数组
```
2. 使用`resize()`函数清空:
```c++
std::vector<std::string> result;
// 向 result 中添加一些元素
result.resize(0); // 清空 result 数组
```
无论使用哪种方法,都可以将 `std::vector<std::string>` 数组清空。建议使用 `clear()` 函数来清空 `std::vector` 数组,因为它更加简洁明了。
相关问题
c++ vector的输入
要使用vector容器输入数据,你可以按照以下步骤进行操作:
1. 首先,包含头文件<vector>。
2. 创建一个空的vector容器,例如vector<vector<int>> res。
3. 在一个循环中,通过getline(cin, s)读取输入的每一行数据。当输入为空行时,循环结束。
4. 在循环内部,将每一行的数据按空格分割,并将其转换为整数类型后存入一个一维vector<int> input中。
5. 将input插入到res中,然后清空input数组。
6. 循环结束后,通过嵌套的for循环遍历res中的数据,并输出到控制台。
下面是一个示例代码:
#include<iostream>
#include<string>
#include<vector>
#include<sstream>
using namespace std;
int main() {
vector<vector<int>> res;
string s;
vector<int> input;
while ((getline(cin, s)) && s != "") {
stringstream ss(s);
int num;
while (ss >> num) {
input.push_back(num);
}
res.push_back(input);
input.clear();
}
for (int i = 0; i < res.size(); i++) {
for (int j = 0; j < res[i].size(); j++) {
cout << res[i][j << " ";
}
cout << endl;
}
return 0;
}
在这个示例代码中,使用了stringstream来将每一行的数据按空格分割。然后将分割后的整数存入input中,再将input插入到res中。最后通过嵌套的for循环遍历res中的数据并输出到控制台。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [C++——vector不定长数组输入与输出](https://blog.csdn.net/weixin_57133901/article/details/127292488)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *2* [txt矩阵数据输入到C++的vector容器中](https://download.csdn.net/download/mr_burial/12412719)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
- *3* [C++用vector容器实现输入任意长度数组](https://blog.csdn.net/m0_61791601/article/details/126895548)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT0_1"}}] [.reference_item style="max-width: 33.333333333333336%"]
[ .reference_list ]
请用C++编写一个学生、教师、管理员登录系统,其中每个身份都需要进行验证后进入子菜单,具体功能如下: 学生: 申请预约:预约机房 查看自己的预约:查看自己预约的机房及预约状态 查看所有预约:查看全部预约信息及预约状态 取消预约:取消自己预约的机房,预约成功或审核中的预约均可取消 注销登录:退出登录 教师: 查看所有预约:查看全部预约信息及预约状态 审核预约:一对一审核预约,可以通过或者不通过 注销登录:退出登录 管理员: 添加账号:添加学生或教师的账号,需要检测学生编号或教师职工号是否重复 查看账号:可选择查看学生或教师的全部信息 查看机房:查看所有机房的信息 清空预约:清空所有预约记录 注销登录:退出登录
好的,以下是我给出的代码实现,包括学生、教师和管理员的功能:
```c++
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
// 学生结构体
struct Student {
string id; // 学号
string name; // 姓名
string password; // 密码
vector<int> roomNum; // 预约机房编号
vector<int> status; // 预约状态,0表示已经取消,1表示预约成功,2表示预约审核中
};
// 教师结构体
struct Teacher {
string id; // 职工号
string name; // 姓名
string password; // 密码
};
// 机房结构体
struct Room {
int roomNum; // 机房编号
int capacity; // 机房容量
};
// 管理员结构体
struct Admin {
string name; // 姓名
string password; // 密码
};
// 学生数组
vector<Student> studentVec;
// 教师数组
vector<Teacher> teacherVec;
// 机房数组
vector<Room> roomVec;
// 管理员数组
vector<Admin> adminVec;
// 学生登录函数
void studentLogin()
{
cout << "请输入学号:" << endl;
string id;
cin >> id;
cout << "请输入姓名:" << endl;
string name;
cin >> name;
cout << "请输入密码:" << endl;
string password;
cin >> password;
// 遍历学生数组,查找是否有该学生
for (vector<Student>::iterator it = studentVec.begin(); it != studentVec.end(); it++) {
if (it->id == id && it->name == name && it->password == password) {
cout << "登录成功!欢迎" << name << "同学!" << endl;
// 进入学生子菜单
while (true) {
cout << "======================" << endl;
cout << "请选择功能:" << endl;
cout << "1. 申请预约" << endl;
cout << "2. 查看自己的预约" << endl;
cout << "3. 查看所有预约" << endl;
cout << "4. 取消预约" << endl;
cout << "5. 注销登录" << endl;
cout << "======================" << endl;
int choice;
cin >> choice;
if (choice == 1) { // 申请预约
int roomNum;
cout << "请输入要预约的机房编号:" << endl;
cin >> roomNum;
// 遍历机房数组,查找是否有该机房
bool isExist = false;
for (vector<Room>::iterator it = roomVec.begin(); it != roomVec.end(); it++) {
if (it->roomNum == roomNum) {
isExist = true;
if (it->capacity == 0) {
cout << "对不起,该机房已经预约满了!" << endl;
break;
} else {
// 预约该机房
it->capacity--;
Student s = *it;
s.status.push_back(2);
s.roomNum.push_back(roomNum);
cout << "预约成功!" << endl;
break;
}
}
}
if (!isExist) {
cout << "对不起,查无此机房!" << endl;
}
} else if (choice == 2) { // 查看自己的预约
for (vector<Student>::iterator it = studentVec.begin(); it != studentVec.end(); it++) {
if (it->id == id) {
cout << "您的预约情况如下:" << endl;
for (int i = 0; i < it->roomNum.size(); i++) {
if (it->status[i] == 1) {
cout << "预约成功的机房编号为:" << it->roomNum[i] << endl;
} else if (it->status[i] == 2) {
cout << "审核中的机房编号为:" << it->roomNum[i] << endl;
} else {
cout << "已取消的机房编号为:" << it->roomNum[i] << endl;
}
}
break;
}
}
} else if (choice == 3) { // 查看所有预约
for (vector<Student>::iterator it = studentVec.begin(); it != studentVec.end(); it++) {
cout << "学号:" << it->id << ",姓名:" << it->name << ",预约情况如下:" << endl;
for (int i = 0; i < it->roomNum.size(); i++) {
if (it->status[i] == 1) {
cout << "预约成功的机房编号为:" << it->roomNum[i] << endl;
} else if (it->status[i] == 2) {
cout << "审核中的机房编号为:" << it->roomNum[i] << endl;
} else {
cout << "已取消的机房编号为:" << it->roomNum[i] << endl;
}
}
}
} else if (choice == 4) { // 取消预约
int roomNum;
cout << "请输入要取消预约的机房编号:" << endl;
cin >> roomNum;
// 遍历学生数组,查找是否有该学生
for (vector<Student>::iterator it = studentVec.begin(); it != studentVec.end(); it++) {
if (it->id == id) {
// 遍历该学生预约的机房编号数组,查找是否有该机房编号
for (int i = 0; i < it->roomNum.size(); i++) {
if (it->roomNum[i] == roomNum) {
if (it->status[i] == 1) {
cout << "该机房已经预约成功,无法取消预约!" << endl;
} else if (it->status[i] == 2) {
it->status[i] = 0;
it->roomNum.erase(it->roomNum.begin() + i);
cout << "取消预约成功!" << endl;
} else {
cout << "该机房已经取消预约,无需重复操作!" << endl;
}
break;
}
}
break;
}
}
} else if (choice == 5) { // 注销登录
cout << "注销登录成功!" << endl;
break;
} else {
cout << "输入有误,请重新输入!" << endl;
}
}
break;
}
}
}
// 教师登录函数
void teacherLogin()
{
cout << "请输入职工号:" << endl;
string id;
cin >> id;
cout << "请输入姓名:" << endl;
string name;
cin >> name;
cout << "请输入密码:" << endl;
string password;
cin >> password;
// 遍历教师数组,查找是否有该教师
for (vector<Teacher>::iterator it = teacherVec.begin(); it != teacherVec.end(); it++) {
if (it->id == id && it->name == name && it->password == password) {
cout << "登录成功!欢迎" << name << "老师!" << endl;
// 进入教师子菜单
while (true) {
cout << "======================" << endl;
cout << "请选择功能:" << endl;
cout << "1. 查看所有预约" << endl;
cout << "2. 审核预约" << endl;
cout << "3. 注销登录" << endl;
cout << "======================" << endl;
int choice;
cin >> choice;
if (choice == 1) { // 查看所有预约
for (vector<Student>::iterator it = studentVec.begin(); it != studentVec.end(); it++) {
cout << "学号:" << it->id << ",姓名:" << it->name << ",预约情况如下:" << endl;
for (int i = 0; i < it->roomNum.size(); i++) {
if (it->status[i] == 1) {
cout << "预约成功的机房编号为:" << it->roomNum[i] << endl;
} else if (it->status[i] == 2) {
cout << "审核中的机房编号为:" << it->roomNum[i] << endl;
} else {
cout << "已取消的机房编号为:" << it->roomNum[i] << endl;
}
}
}
} else if (choice == 2) { // 审核预约
int roomNum;
cout << "请输入要审核的机房编号:" << endl;
cin >> roomNum;
// 遍历学生数组,查找是否有该学生
for (vector<Student>::iterator it = studentVec.begin(); it != studentVec.end(); it++) {
// 遍历该学生预约的机房编号数组,查找是否有该机房编号
for (int i = 0; i < it->roomNum.size(); i++) {
if (it->roomNum[i] == roomNum && it->status[i] == 2) {
cout << "请输入审核结果(1表示通过,0表示不通过):" << endl;
int result;
cin >> result;
if (result == 1) {
it->status[i] = 1;
cout << "审核通过!" << endl;
} else if (result == 0) {
it->status[i] = 0;
cout << "审核不通过!" << endl;
} else {
cout << "输入有误,请重新输入!" << endl;
}
break;
}
}
}
} else if (choice == 3) { // 注销登录
cout << "注销登录成功!" << endl;
break;
} else {
cout << "输入有误,请重新输入!" << endl;
}
}
break;
}
}
}
// 管理员登录函数
void adminLogin()
{
cout << "请输入姓名:" << endl;
string name;
cin >> name;
cout << "请输入密码:" << endl;
string password;
cin >> password;
// 遍历管理员数组,查找是否有该管理员
for (vector<Admin>::iterator it = adminVec.begin(); it != adminVec.end(); it++) {
if (it->name == name && it->password == password) {
cout << "登录成功!欢迎" << name << "管理员!" << endl;
// 进入管理员子菜单
while (true) {
cout << "======================" << endl;
cout << "请选择功能:" << endl;
cout << "1. 添加账号" << endl;
cout << "2. 查看账号" << endl;
cout << "3. 查看机房" << endl;
cout << "4. 清空预约" << endl;
cout << "5. 注销登录" << endl;
cout << "======================" << endl;
int choice;
cin >> choice;
if (choice == 1) { // 添加账号
cout << "请选择要添加的账号类型(1表示学生,2表示教师):" << endl;
int type;
cin >> type;
if (type == 1) { // 添加学生账号
cout << "请输入学号:" << endl;
string id;
cin >> id;
cout << "请输入姓名:" << endl;
string name;
cin >> name;
cout << "请输入密码:" << endl;
string password;
cin >> password;
// 检查学生编号是否重复
bool isExist = false;
for (vector<Student>::iterator it = studentVec.begin(); it != studentVec.end(); it++) {
if (it->id == id) {
isExist = true;
break;
}
}
if (isExist) {
cout << "该学号已经存在,请重新输入!" << endl;
continue;
}
Student s;
s.id = id;
s.name = name;
s.password = password;
studentVec.push_back(s);
cout << "添加学生账号成功!" << endl;
} else if (type == 2) { // 添加教师账号
cout << "请输入职工号:" << endl;
string id;
cin >> id;
cout << "请输入姓名:" << endl;
string name;
cin >> name;
cout << "请输入密码:" << endl;
string password;
cin >> password;
// 检查教师职工号是否重复
bool isExist = false;
阅读全文