(2)编写函数void search(int x),输出链表中是否有值为x的结点。
#include <iostream> using namespace std; struct Node { int data; //结点的数据 struct Node *next; //指向下一结点 }; Node *head=NULL; //将链表头定义为全局变量,以便于后面操作 void make_list(); //建立链表 void out_list(); //输出链表 int main( ) { make_list(); out_list(); return 0; } void make_list() { int n; Node *p,*q; cout<<"输入若干正数(以0或一个负数结束)建立链表:"; cin>>n; while(n>0) //输入若干正数建立链表,输入非正数时,建立过程结束 { p=new Node; //新建结点 p->data=n; p->next=NULL; if(head==NULL) head=p; //将先输入的数字对应的结点放在链表末尾 else q->next=p; q=p; cin>>n; //输入下一个数,准备建立下一个结点 } return; } void out_list() { Node *p=head; int x,flag=0; cout<<"请输入需要查找的值:"; cin>>x; cout<<"链表中的数据为:"<<endl; while(p!=NULL) { if (p->data==x) flag++; cout<<p->data<<" "; p=p->next; } cout<<endl; if (flag!=0) cout<<"在链表中有值为"<<x<<"的结点"<<endl; else cout<<"在链表中没有值为"<<x<<"的结点"<<endl; return; }
运行结果:
知识点总结:
插入代码要选好位置
学习心得:
好好学习 天天向上
原文地址:http://blog.csdn.net/ljd939952281/article/details/42968485