system("cls"); std::cout << "读取完成" << endl; std::cout << "请选择最短路径要求" << endl; std::cout << "时间:1 " << endl; std::cout << "价格:2 " << endl; cin >> p; system("cls"); switch (p) { case 1: std::cout << "以时间为基准:" << endl; TimeShortPath(graph, s, way, D); for (int i = 0; i < 199; ++i) { if (way[e][i] == n) { c[n - 1] = i; std::cout << cities[i].city << ' '; n++; i = -1; } } std::cout << std::endl; std::cout << "时间:" << D[e] << " h "; TxtWriting(graph, c, n); break; case 2: std::cout << "以价格为基准:" << endl; CostShortPath(graph, s, way, D); for (int i = 0; i < 199; ++i) { if (way[e][i] == n) { c[n - 1] = i; std::cout << cities[i].city << ' '; n++; i = -1; } } std::cout << std::endl; std::cout << "价格:$" << D[e]; TxtWriting(graph, c, n); break; } return 0; }
时间: 2024-04-27 11:22:38 浏览: 141
这段代码实现了一个最短路径算法,并让用户选择是以时间为基准还是以价格为基准进行计算。具体实现过程如下:
1. 清空屏幕并输出提示信息。
2. 让用户选择最短路径的要求(时间或者价格)。
3. 根据用户的选择,调用不同的最短路径算法(TimeShortPath或者CostShortPath)来计算最短路径,并将结果保存在D数组中。
4. 根据way数组中的信息,反向遍历从起点到终点的路径,并将经过的城市名称输出到控制台上。
5. 输出最短路径的时间或者价格,并将路径信息写入到文件中。
6. 返回0,结束程序。
相关问题
system("cls"); std::cout << "读取完成" << endl; std::cout << "请选择最短路径要求" << endl; std::cout << "时间:1 " << endl; std::cout << "价格:2 " << endl; cin >> p; system("cls"); switch (p) { case 1: std::cout << "以时间为基准:" << endl; TimeShortPath(graph, s, way, D); for (int i = 0; i < 199; ++i) { if (way[e][i] == n) { c[n - 1] = i; std::cout << cities[i].city << ' '; n++; i = -1; } } std::cout << std::endl; std::cout << "时间:" << D[e] << " h "; TxtWriting(graph, c, n); case 2: std::cout << "以价格为基准:" << endl; CostShortPath(graph, s, way, D); for (int i = 0; i < 199; ++i) { if (way[e][i] == n) { c[n - 1] = i; std::cout << cities[i].city << ' '; n++; i = -1; } } std::cout << std::endl; std::cout << "价格:$" << D[e]; TxtWriting(graph, c, n); }
这段代码实现了一个简单的控制台界面,让用户输入最短路径的要求(时间或价格),并调用相应的函数求解最短路径,并输出路径信息和路径花费。具体来说,该代码先清空控制台屏幕,然后输出提示信息,让用户选择最短路径要求。根据用户的选择,使用switch语句调用TimeShortPath或CostShortPath函数求解最短路径,并将路径保存在数组c中。然后遍历数组c,输出路径信息,并调用TxtWriting函数将路径信息输出到文本文件中。最后,根据用户选择的最短路径要求输出路径的时间或价格。
以#include <iostream> #include <windows.h> #include <iomanip> #define N 1000 using namespace std; struct person { int age char function[12] char gender[10] }; struct staff { int number; char name[12] person per;开头写一篇关于员工信息管理的小系统
员工信息管理系统
本系统旨在帮助企业或机构管理员工信息,包括员工基本信息、工作信息等。本系统使用 C++ 语言编写,采用结构体和文件存储方式实现员工信息的管理和查询。
系统功能
1. 添加员工信息
2. 查询员工信息
3. 修改员工信息
4. 删除员工信息
5. 显示所有员工信息
6. 退出系统
系统实现
1. 添加员工信息
当用户选择添加员工信息时,系统会要求用户输入员工的基本信息,包括员工编号、姓名、年龄、性别、职务等。在输入完毕后,系统将员工信息保存到文件中,以便后续查询和修改。
2. 查询员工信息
当用户选择查询员工信息时,系统会要求用户输入员工编号或姓名,并根据用户的输入在文件中查找员工信息。如果找到了对应的员工信息,系统将显示该员工的基本信息、工作信息等;否则,系统将提示用户未找到对应的员工信息。
3. 修改员工信息
当用户选择修改员工信息时,系统会要求用户输入员工编号或姓名,并根据用户的输入在文件中查找员工信息。如果找到了对应的员工信息,系统将允许用户修改员工的基本信息、工作信息等;否则,系统将提示用户未找到对应的员工信息。
4. 删除员工信息
当用户选择删除员工信息时,系统会要求用户输入员工编号或姓名,并根据用户的输入在文件中查找员工信息。如果找到了对应的员工信息,系统将提示用户确认是否删除该员工信息;否则,系统将提示用户未找到对应的员工信息。
5. 显示所有员工信息
当用户选择显示所有员工信息时,系统将从文件中读取所有员工信息,并将其显示在屏幕上,包括员工的基本信息、工作信息等。
6. 退出系统
当用户选择退出系统时,系统将保存所有员工信息,并退出程序。
源码实现
```c++
#include <iostream>
#include <fstream>
#include <string>
#include <cstdlib>
#include <windows.h>
#include <iomanip>
using namespace std;
#define N 1000
struct Person {
int age;
char function[12];
char gender[10];
};
struct Staff {
int number;
char name[12];
Person per;
};
void add_staff(Staff staffs[], int& count) {
cout << "请输入员工编号:";
cin >> staffs[count].number;
cout << "请输入员工姓名:";
cin >> staffs[count].name;
cout << "请输入员工年龄:";
cin >> staffs[count].per.age;
cout << "请输入员工性别:";
cin >> staffs[count].per.gender;
cout << "请输入员工职务:";
cin >> staffs[count].per.function;
count++;
cout << "添加成功!" << endl;
}
void search_staff(Staff staffs[], int count) {
int choice;
string name;
int number;
cout << "请选择查询方式(1.按编号查询,2.按姓名查询):";
cin >> choice;
if (choice == 1) {
cout << "请输入员工编号:";
cin >> number;
for (int i = 0; i < count; i++) {
if (staffs[i].number == number) {
cout << "员工编号:" << staffs[i].number << endl;
cout << "员工姓名:" << staffs[i].name << endl;
cout << "员工年龄:" << staffs[i].per.age << endl;
cout << "员工性别:" << staffs[i].per.gender << endl;
cout << "员工职务:" << staffs[i].per.function << endl;
return;
}
}
}
else if (choice == 2) {
cout << "请输入员工姓名:";
cin >> name;
for (int i = 0; i < count; i++) {
if (strcmp(staffs[i].name, name.c_str()) == 0) {
cout << "员工编号:" << staffs[i].number << endl;
cout << "员工姓名:" << staffs[i].name << endl;
cout << "员工年龄:" << staffs[i].per.age << endl;
cout << "员工性别:" << staffs[i].per.gender << endl;
cout << "员工职务:" << staffs[i].per.function << endl;
return;
}
}
}
cout << "未找到对应的员工信息!" << endl;
}
void modify_staff(Staff staffs[], int count) {
int choice;
string name;
int number;
cout << "请选择修改方式(1.按编号修改,2.按姓名修改):";
cin >> choice;
if (choice == 1) {
cout << "请输入员工编号:";
cin >> number;
for (int i = 0; i < count; i++) {
if (staffs[i].number == number) {
cout << "请输入员工姓名:";
cin >> staffs[i].name;
cout << "请输入员工年龄:";
cin >> staffs[i].per.age;
cout << "请输入员工性别:";
cin >> staffs[i].per.gender;
cout << "请输入员工职务:";
cin >> staffs[i].per.function;
cout << "修改成功!" << endl;
return;
}
}
}
else if (choice == 2) {
cout << "请输入员工姓名:";
cin >> name;
for (int i = 0; i < count; i++) {
if (strcmp(staffs[i].name, name.c_str()) == 0) {
cout << "请输入员工编号:";
cin >> staffs[i].number;
cout << "请输入员工年龄:";
cin >> staffs[i].per.age;
cout << "请输入员工性别:";
cin >> staffs[i].per.gender;
cout << "请输入员工职务:";
cin >> staffs[i].per.function;
cout << "修改成功!" << endl;
return;
}
}
}
cout << "未找到对应的员工信息!" << endl;
}
void delete_staff(Staff staffs[], int& count) {
int choice;
string name;
int number;
cout << "请选择删除方式(1.按编号删除,2.按姓名删除):";
cin >> choice;
if (choice == 1) {
cout << "请输入员工编号:";
cin >> number;
for (int i = 0; i < count; i++) {
if (staffs[i].number == number) {
for (int j = i; j < count - 1; j++) {
staffs[j] = staffs[j + 1];
}
count--;
cout << "删除成功!" << endl;
return;
}
}
}
else if (choice == 2) {
cout << "请输入员工姓名:";
cin >> name;
for (int i = 0; i < count; i++) {
if (strcmp(staffs[i].name, name.c_str()) == 0) {
for (int j = i; j < count - 1; j++) {
staffs[j] = staffs[j + 1];
}
count--;
cout << "删除成功!" << endl;
return;
}
}
}
cout << "未找到对应的员工信息!" << endl;
}
void display_staff(Staff staffs[], int count) {
cout << "员工编号\t员工姓名\t员工年龄\t员工性别\t员工职务" << endl;
for (int i = 0; i < count; i++) {
cout << staffs[i].number << "\t\t" << staffs[i].name << "\t\t" << staffs[i].per.age << "\t\t" << staffs[i].per.gender << "\t\t" << staffs[i].per.function << endl;
}
}
int main() {
Staff staffs[N];
int count = 0;
int choice;
ifstream infile("staffs.txt");
if (infile.is_open()) {
while (!infile.eof() && count < N) {
infile >> staffs[count].number;
infile >> staffs[count].name;
infile >> staffs[count].per.age;
infile >> staffs[count].per.gender;
infile >> staffs[count].per.function;
count++;
}
infile.close();
}
while (true) {
cout << "-------------------员工信息管理系统-------------------" << endl;
cout << "1.添加员工信息" << endl;
cout << "2.查询员工信息" << endl;
cout << "3.修改员工信息" << endl;
cout << "4.删除员工信息" << endl;
cout << "5.显示所有员工信息" << endl;
cout << "6.退出系统" << endl;
cout << "请选择操作(1-6):";
cin >> choice;
switch (choice) {
case 1:
add_staff(staffs, count);
break;
case 2:
search_staff(staffs, count);
break;
case 3:
modify_staff(staffs, count);
break;
case 4:
delete_staff(staffs, count);
break;
case 5:
display_staff(staffs, count);
break;
case 6:
ofstream outfile("staffs.txt");
for (int i = 0; i < count; i++) {
outfile << staffs[i].number << " ";
outfile << staffs[i].name << " ";
outfile << staffs[i].per.age << " ";
outfile << staffs[i].per.gender << " ";
outfile << staffs[i].per.function << endl;
}
outfile.close();
cout << "感谢使用员工信息管理系统,再见!" << endl;
Sleep(2000);
exit(0);
default:
cout << "无效操作,请重新选择!" << endl;
break;
}
system("pause");
system("cls");
}
return 0;
}
```
系统说明
本系统使用了文件存储方式,将员工信息保存到文本文件中。在程序运行时,系统会从文件中读取已有的员工信息,并将修改后的员工信息保存到文件中。由于本系统仅为演示程序,没有进行输入检查和异常处理,实际使用时需要进行相应的改进。
阅读全文