2019独角兽企业重金招聘Python工程师标准>>>
以下代码运行时崩溃:
#include <iostream>
using namespace std;
struct node
{
int num;
struct node * next;
}; node * creat()
{
node * head=NULL;node*HEAD=head;
cout<<"输入数字,组成链表,0退出"<<endl;
int a;
while(cin>>a&&a!=0)
{
node * add=new node;
add->num=a;
head->next=add;
head=head->next;
}
head->next=NULL;
return HEAD;
}
int main()
{
node* head=creat();
while(head->next!=NULL)
{
cout<<head->next->num;
head=head->next;
}
原因:
最初你的head=null,并没有指向一个节点,head->next没有意义。
解决:head = new head; 动态分配一个头结点