请帮忙解决这个问题。 这是简单的数据结构程序 在该程序中,首先用户输入他想要输入的记录数,然后输入记录。输入记录后,他输入搜索和搜索数据。现在我只为搜索No2做了一个输入。之后我会做别人。 当我运行它并到达搜索功能时,它会停止工作并关闭窗口错误。
请提前帮助谢谢。
#include<conio.h>
#include<iostream>
#include<fstream>
#include<Windows.h>
#include<dos.h>
#include<cctype>
#include<sstream>
#include<string>
using namespace std;
bool check = true;
struct node //structure of node //
{
char name[20];
char ccode[20];
int marks;
float cgpa;
node *next;
}*head,*lastptr;
void add() //Adds record of student//
{
node *p;
p=new node;
cout<<"Enter name of student:"<<endl;
gets(p->name);
fflush(stdin);
cout<<"Enter cource code:"<<endl;
gets(p->ccode);
fflush(stdin);
cout<<"Enter Marks of student:"<<endl;
cin>>p->marks;
fflush(stdin);
cout<<"Enter CGPA of student:"<<endl;
cin>>p->cgpa;
fflush(stdin);
p->next=NULL;
if(check)
{
head = p;
lastptr = p;
check = false;
}
else
{
lastptr->next=p;
lastptr=p;
}
cout<<endl<<"Student's information saved Successfully";
getch();
}
void search() //searches record of student//
{
node *prev=NULL;
node *current=NULL;
char c_code[20];
cout<<"Enter Roll Number to search:"<<endl;
//c_code=getch();
gets(c_code);
fflush(stdin);
cout<<"hkjhk"<<c_code;
prev=head;
current=head;
while(current->ccode!=c_code)
{
prev=current;
current=current->next;
}
cout<<"\nname: ";
puts(current->name);
cout<<"\n Cource Code:";
cout<<current->ccode;
cout<<"\nMarks:";
cout<<current->marks;
cout<<"\nCGPA:";
cout<<current->cgpa;
getch();
}
int main()
{
int x;
system("cls");
cout<<"How many students you want to enter"<<endl;
cin>>x;
while(x>0){
add();
x--;
}
cout<<"\nwhat type of search you want to search select choice 1 ,2 3 \n";
int choice;
cout<<"1 search all student by cource code \n";
cout<<"2 search all student by marks \n";
cout<<"3 search all student by cgpa \n";
cin>>choice;
if(choice==1)
{
system("cls");
add();
}
else if(choice==2)
{
cout<<"fhghgf";
system("cls");
search();
}
else
{
}
getch();
}
答案 0 :(得分:2)
在search()
方法中有循环:
while(current->ccode!=c_code)
{
prev=current;
current=current->next;
}
找不到代码时发生了什么?您在链表结束后继续。
此外,您需要比较内容,而不是地址,因此您必须使用strcmp
。
解决问题应该是:
while(current && strcmp (current->ccode, c_code))
{
prev=current;
current=current->next;
}
另一个问题是gets()
方法。您必须fflush(stdin)
之前 gets()
,否则某些gets()
将仅读取之前输入的未归档CR(行尾)。
如果您想要而不是fflush(stdin)
,您可以使用一些eatwhites方法,如下所示:
istream& eatwhites(istream& stream)
{
// to define white spaces manually:
//const string skip=" \t\r\n";
//while(string::npos != skip.find(stream.peek())){
// stream.ignore();
//}
//or just use isspace:
while(isspace(stream.peek())){
stream.ignore();
}
return stream;
}
并在gets()
之前调用它:eatwhites(stdin);
此方法跳过白色字符并将读取放在数据的开头,这样您就不会读取前一个输入留下的空行...
另一件事:您最好使用std::getline();
并使用std::string
而不是char数组。
答案 1 :(得分:1)
GDB可能对获取错误很有用。启动GDB并通过GDB控制台运行程序,在程序中执行相同的操作以获取失败,一旦程序失败,引入命令“bt”,它将报告有关最终执行行的回溯直到失败,所以您将能够找到错误
答案 2 :(得分:1)
其中一个问题在下面一行:
while(current->ccode!=c_code)
您需要使用:
while (strcmp (current->ccode, c_code))