cpp#include usingnamespacestd;structnode{chardata;node*next;};;node*Create();;voidshow(node*head);intmain(){node*head;head=Create();show(head);return0;}node*Create(){chartemp;node*head=NULL;node*next=NULL;node*r=head;node*PS;cout<<"请输入"<while(temp!='*') {cin>>temp;PS=newnode;PS->data=temp;PS->next=NULL;if(head==NULL){head=PS;}else{r->next=PS;}r=PS;}returnhead;}voidshow(node*head){node*read=head;while(read!=NULL){cout<data; read=read->next;}cout<} 把r=PS移动到else里面为什么不行啊就是C++else{r->next=PS;r=PS;}求教!谢谢。。
白板的微信
皈依舞
相关分类