博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
链表相减
阅读量:5133 次
发布时间:2019-06-13

本文共 2237 字,大约阅读时间需要 7 分钟。

书上题目,要用带头链表处理

1 #include 
2 #include
3 #include
4 using namespace std; 5 typedef struct node 6 { 7 int date; 8 struct node *next; 9 }listnode,*linklist; 10 linklist initlist(linklist head) /*链表初始化*/ 11 { 12 head=new node; /*申请内存*/ 13 if(head==NULL) 14 cout<<"链表创建失败"; 15 else 16 head->next=NULL; 17 return head; 18 } 19 int listempty(linklist head) 20 { 21 if(head->next==NULL) 22 return 1; 23 return 0; 24 } 25 int inputlist(linklist head,int n) 26 { 27 int i,t; 28 linklist tail=NULL,temp=NULL; 29 for(i=0;i
>t; 35 head->date=t; 36 } 37 else 38 { 39 temp=new node; 40 cin>>t; 41 temp->date=t; 42 tail->next=temp; 43 tail=temp; 44 tail->next=NULL; 45 } 46 } 47 return 0; 48 } 49 void outputlist(linklist head) 50 { 51 linklist p=head; 52 while(p!=NULL) 53 { 54 cout<
date<<' '; 55 p=p->next; 56 } 57 cout<
next; 66 free(q); 67 } 68 } 69 void insert(linklist head,int n,int num) 70 { 71 linklist p=head,q=head,temp,l; 72 int i; 73 for(i=0;i
next; 77 } 78 temp=p; 79 l=new listnode; 80 l->date=num; 81 l->next=temp; 82 q->next=l; 83 } 84 int listlen(linklist head) 85 { 86 int count=0; 87 linklist p=head; 88 while(p!=NULL) 89 { 90 count++; 91 p=p->next; 92 } 93 return count; 94 } 95 linklist del(linklist head1,linklist head2) 96 { 97 int i,flag=0; 98 linklist H1,q=head2; 99 H1=new listnode;100 H1->next=head1;101 linklist pre=H1,p=H1->next;102 while(p!=NULL)103 {104 flag=0;105 q=head2;106 while(q!=NULL)107 {108 if(p->date==q->date)109 {110 pre->next=p->next;111 flag=1;112 }113 q=q->next;114 }115 if(flag==0)116 {117 pre=p;118 p=p->next;119 }120 else121 {122 p=pre->next;123 }124 }125 return H1->next;126 }127 int main()128 {129 linklist head1,head2;130 head1=initlist(head1);131 head2=initlist(head2);132 inputlist(head1,6);133 inputlist(head2,5);134 head1=del(head1,head2);135 outputlist(head1);136 return 0; 137 }

 

转载于:https://www.cnblogs.com/a1225234/p/4662150.html

你可能感兴趣的文章
安装 Express
查看>>
存储(硬件方面的一些基本术语)
查看>>
观察者模式
查看>>
Weka中数据挖掘与机器学习系列之基本概念(三)
查看>>
Win磁盘MBR转换为GUID
查看>>
大家在做.NET B/S项目的时候多用什么设技术啊?
查看>>
Java SE和Java EE应用的性能调优
查看>>
leetcode-Sort List
查看>>
中文词频统计
查看>>
了解node.js
查看>>
想做移动开发,先看看别人怎么做
查看>>
Eclipse相关集锦
查看>>
虚拟化架构中小型机构通用虚拟化架构
查看>>
继承条款effecitve c++ 条款41-45
查看>>
Java泛型的基本使用
查看>>
1076 Wifi密码 (15 分)
查看>>
noip模拟赛 党
查看>>
bzoj2038 [2009国家集训队]小Z的袜子(hose)
查看>>
Java反射机制及其Class类浅析
查看>>
Postman-----如何导入和导出
查看>>