无法让strstr()工作

时间:2015-12-01 19:43:59

标签: c++ linked-list strstr

我有一项同工作任务,我无法在一个区域内正常工作,特别是在我尝试比较字符串的地方。 这是作业:

  

您将编写一个程序,提示用户输入学生姓名,年龄,毕业日期和毕业日期。然后,您的程序将读入所有学生信息并将其存储到链接列表中。然后程序将打印学生的姓名。接下来,程序将提示用户输入字符串。该程序将打印包含名称中字符串的每个学生的完整信息。

以下是我所拥有的:

#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:我的链接列表向后存储结构时遇到问题?它也不是存储我的毕业日期,或者当我尝试打印时出现问题,因为它们打印为空白。

2 个答案:

答案 0 :(得分:3)

您的代码问题很明显。您只是检查列表的头部而不是遍历列表。

这是一个有问题的部分(假设每个函数调用应该返回1个学生的信息):

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);
}

答案 1 :(得分:0)

您需要在top = top->next内的某处添加displayStudentInfo,类似于您在displayStudentNames中的操作方式。目前,没有这个,你的循环不会遍历链表。

我不会发布任何代码以避免做功课,但可以随时向我提出更多问题或澄清。