我有一个homwework任务,我无法在一个区域正确工作,特别是在我试图比较字符串的区域。任务如下:
您将编写一个程序,提示用户输入学生姓名、年龄、GPA和毕业日期。然后,您的程序将读入所有学生信息,并将其存储到链接列表中。然后程序将打印学生的姓名。接下来,程序将提示用户输入字符串。该程序将打印每个学生的完整信息,其中包含姓名中的字符串。
这是我的:
#include <iostream>
#include <cstring>
using namespace std;
const char NAME_SIZE = 50;
struct StudentInfo
{
char studentName[NAME_SIZE];
int age;
double gpa;
char graduationSemester[3];
StudentInfo *next;
};
void displayStudentNames(StudentInfo *top);
void displayStudentInfo(StudentInfo *top);
int main(){
StudentInfo *top = 0;
cout << "Please enter the students. Enter the name, age, gpa, and semester of graduation (e.g. F13)." << endl;
cout << "Enter an empty name to stop." << endl << endl;
bool done = false;
while(!done){
char nameBuffer[NAME_SIZE];
char graduationBuffer[3];
cin.getline(nameBuffer, NAME_SIZE);
if(nameBuffer[0] != 0){
StudentInfo *temp = new StudentInfo;
strcpy(temp->studentName, nameBuffer);
cin >> temp->age;
cin >> temp->gpa;
cin.getline(graduationBuffer, 3);
strcpy(temp->graduationSemester, graduationBuffer);
cin.ignore(80, 'n');
temp->next = top;
top = temp;
}else{
displayStudentNames(top);
displayStudentInfo(top);
done = true;
}
}
}
void displayStudentNames(StudentInfo *top){
cout << "Here are the students that you entered: " << endl << endl;
while(top){
cout << top->studentName << endl;
top = top->next;
}
cout << endl;
}
void displayStudentInfo(StudentInfo *top){
char name[NAME_SIZE];
do{
cout << "Which students do you want? ";
cin.getline(name, NAME_SIZE);
const char *str = top->studentName;
const char *substr = name;
const char *index = str;
while((index = strstr(index,substr)) != NULL){
cout << "Name: " << top->studentName << ", Age: " << top->age << ", GPA: " << top->gpa << ", Graduations Date: " << top->graduationSemester;
index++;
}
}while(name[0] != 0);
}
我的问题发生在displayStudentInfo函数中,我就是无法使它正常工作。我尝试过很多不同的东西,这只是我尝试过的最新的东西。但是,在程序的早期创建链接列表后,我们应该输入一个从字母到全名的字符串,并在列表中的任何位置找到它,然后打印出该特定名称的信息。
eta:我的链表向后存储结构也有问题?它要么没有存储我的毕业日期,要么当我试图打印它们时出了问题,因为它们打印的是空白的。
您的代码问题显而易见。您只是检查列表的头部,而不是遍历到列表中。
这是一个有问题的部分(假设每个函数调用都应该为一个学生返回信息):
void displayStudentInfo(StudentInfo *top){
char name[NAME_SIZE];
//Addes 'node' variable for simplicity, you can use 'top' itself
StudentInfo *node = top;
cout << "Which students do you want? ";
cin.getline(name, NAME_SIZE);
do{
// Check if name is correct
// "Entered name should be at start of field"
// You should use == not =
if(node->studentName == strstr(node->studentName, name){
cout << "Name: " << top->studentName << ", Age: " << top->age << ", GPA: " << top->gpa << ", Graduations Date: " << top->graduationSemester;
}
// Traverse in list
node = node->next;
// Until reach end of list
}while(node != NULL);
}
您需要在displayStudentInfo
中的某个位置添加top = top->next
,类似于在displayStudentNames
中所做的操作。目前,如果没有这个,您的循环就不会遍历链表。
我不会发布任何代码来避免做你的家庭作业,但请随时问我更多问题或澄清。