我用c++链表写了个图书管理系统,删除函数有些问题,求大神指教。总是说有一处是nullptr

#include<iostream>#include<string>usingnamespacestd;classbook{public:intnum;floatpric... #include<iostream>
#include<string>
using namespace std;
class book {
public:
int num;
float price;
book *next;
};
book *head = NULL;
void Delete(book*head, int num)
{
book *l;
if (head->num == num)
{
l = head;
head = head->next;
::head = head;
delete l;
cout << "操作成功!" << endl;
return;
}
while (head)
{
if (head->next = NULL) { cout << "找不到编号" << endl; return; }
if (head->next->num == num)//用VS2017编译总是说head->next是nullptr
{
l = head->next;
head->next = l->next;
delete l;
cout << "操作成功!" << endl;
return;
}
head = head->next;
}
cout << "找不到编号" << endl;
}int main()
{
book *head = NULL;
head = creat();
showbook(head);
cout << "请输入要删除的编号:" << endl;
int booknum;
cin >> booknum;
Delete(head, booknum);
showbook(head);
system("pause");
return 0;
}
展开
 我来答
CHENGWENGJI
2018-07-14 · TA获得超过412个赞
知道小有建树答主
回答量:667
采纳率:66%
帮助的人:296万
展开全部
if (head->next = NULL) { cout << "找不到编号" << endl; return; }

应该是==

if (head->next == NULL) { cout << "找不到编号" << endl; return; }

小问题

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式