欢迎来到三一办公! | 帮助中心 三一办公31ppt.com(应用文档模板下载平台)
三一办公
全部分类
  • 办公文档>
  • PPT模板>
  • 建筑/施工/环境>
  • 毕业设计>
  • 工程图纸>
  • 教育教学>
  • 素材源码>
  • 生活休闲>
  • 临时分类>
  • ImageVerifierCode 换一换
    首页 三一办公 > 资源分类 > DOC文档下载  

    编写一个C++程序,实现创建、输出链表,查找、插入、删除结点等功能: .doc

    • 资源ID:2385450       资源大小:20.50KB        全文页数:4页
    • 资源格式: DOC        下载积分:8金币
    快捷下载 游客一键下载
    会员登录下载
    三方登录下载: 微信开放平台登录 QQ登录  
    下载资源需要8金币
    邮箱/手机:
    温馨提示:
    用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)
    支付方式: 支付宝    微信支付   
    验证码:   换一换

    加入VIP免费专享
     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    编写一个C++程序,实现创建、输出链表,查找、插入、删除结点等功能: .doc

    编写一个C+程序,实现创建、输出链表,查找、插入、删除结点等功能:#include<iostream.h>struct node /定义链表的结点 int data; /要存在结点的整数 node *next; /指向下一结点的指针;node *createList(int); /创建链表函数void outputList(node *); /输出链表函数node *findList(int,node *); /查找结点函数node *insertList(int,node *); /插入结点函数node *deleteList(int,node *); /删除结点函数int main() /主函数 int n,find,insert,delet; /定义常量node *listinsert=NULL; /定义接受插入后链表的结构指针node *listhead=NULL; /定义头指针node *listdelete=NULL; /定义接受删除后链表的结构指针cout<<"please enter the number of node:" /要创建链表的大小cin>>n;listhead=createList(n); /调用创建链表函数outputList(listhead); /输出创建的链表cout<<"please enter the number of finding:" /输入要查找的结点cin>>find;findList(find,listhead); /调用查找结点函数cout<<"please enter the number of inserting:" /输入要插入的结点cin>>insert;listinsert=insertList(insert,listhead); /调用插入结点函数 outputList(listinsert); cout<<"please enter the number of deleting:" /输入要删除的结点cin>>delet;listdelete=deleteList(delet,listhead); /调用删除结点函数outputList(listdelete);return 0;node *createList(int n) /创建链表函数 node *temp=NULL,*tail=NULL,*head=NULL; int num; cout<<"please enter the 1 node:" /创建第一个结点 cin>>num; head=new node; /给头结点分配动态存储空间 if(head=NULL) /判断是否给头结点分配了存储空间 cout<<"Not memory available!" return NULL; else head->data=num; /给结点赋值 head->next=NULL; /给指针域赋值 tail=head; /移动尾指针所指向的位置 for(int i=0;i<n-1;i+) /创建其他结点 cout<<"please enter the "<<i+2<<" node:" cin>>num; temp=new node; /给新结点分配动态存储空间 if(temp=NULL) /动态空间分配失败 cout<<"Not memory available!" return head; else temp->data=num; /为新结点赋值 temp->next=NULL; /为新结点 tail->next=temp; /将新建结点连接到链表的后面 tail=temp; /尾指针指向链表的最后一个结点 return head; void outputList(node *head) /输出链表函数 node *curnode; /定义一个动态查找指针 curnode=head; /将动态指针指向头结点 while(curnode) /输出每个结点 cout<<curnode->data; if(curnode->next) cout<<"->" curnode=curnode->next; cout<<endl; return;node *findList(int n,node *head) /查找结点函数 node *curnode; curnode=head;int j=0; while(curnode) /查找结点 j+; if(curnode->data=n) cout<<"Have find "<<n<<" in the list!"<<" "<<"the adress is:"<<curnode<<" "<<"the "<<n<<" is the "<<j<<" node!"<<endl; return 0;curnode=curnode->next; cout<<"Sorry! Not find "<<n<<" in the list!"<<endl; return NULL; node *insertList(int n,node *head) /插入结点函数 node *curnode=NULL; node *prenode=NULL; node *newnode=NULL; curnode=head; while(curnode!=NULL) && (curnode->data<n) /找出要插入的位置 prenode=curnode; curnode=curnode->next; newnode=new node; if(newnode=NULL) cout<<"Not memory available!" return head; newnode->data=n; if(prenode=NULL) /在链表表头插入结点 newnode->next=curnode; return newnode; else /在链表中插入结点 prenode->next=newnode; newnode->next=curnode; return head; node *deleteList(int n,node *head) /删除结点 node *prenode=NULL; node *curnode=head; while(curnode!=NULL && curnode->data!=n) /查找要删除结点的位置 prenode=curnode; curnode=curnode->next; if(curnode=NULL) /没有查找到要删除的结点 cout<<"Sorry!In the list haven't delete number!" return head; if(prenode=NULL) /删除的结点为头结点 head=head->next; else /删除的结点为其他结点 prenode->next=curnode->next; delete curnode; /释放要删除结点的空间 return head;

    注意事项

    本文(编写一个C++程序,实现创建、输出链表,查找、插入、删除结点等功能: .doc)为本站会员(仙人指路1688)主动上传,三一办公仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知三一办公(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    备案号:宁ICP备20000045号-2

    经营许可证:宁B2-20210002

    宁公网安备 64010402000987号

    三一办公
    收起
    展开