gpt4 book ai didi

C语言中数据结构之链表归并排序实例代码

转载 作者:qq735679552 更新时间:2022-09-28 22:32:09 32 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章C语言中数据结构之链表归并排序实例代码由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

C语言中数据结构之链表归并排序实例代码 。

问题 。

       设有两个无头结点的单链表,头指针分别为ha,hb,链中有数据域data,链域next,两链表的数据都按递增排序存放,现要求将hb表归到ha表中,且归并后ha仍递增序,归并中ha表中已有的数据若hb中也有,则hb中的数据不归并到ha中,hb的链表在算法中不允许破坏.

源程序 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#include <stdio.h>
#include<stdlib.h>
#define N1 6 /*链表La的长度*/ 
#define N2 6 /*链表Lb的长度*/
struct listnode 
{
  int data;
  struct listnode *next;
};
void createlist( struct listnode * *, int ); 
void listinsert( struct listnode * *, struct listnode * *);
void readlist( struct listnode *);
int main()
{
  
  struct listnode *ha=NULL,*hb=NULL;
  printf ( "请按照升序序列输入以下数字以建立链表La\n" );
  printf ( "Please Input %d numbers:" ,N1);
  createlist(&ha,N1);
  printf ( "请按照升序序列输入以下数字以建立链表Lb\n" );
  printf ( "Please Input %d numbers:" ,N2);
  createlist(&hb,N2);
  listinsert(&ha,&hb);
  readlist(ha);
  printf ( "\n" ); 
}
 
 
void createlist( struct listnode * *p, int n)
{ /*尾插法建立链表*/
  struct listnode *t,*q;
  int i;
  t=( struct listnode *) malloc ( sizeof ( struct listnode));
  scanf ( "%d" ,&t->data);
  *p=t;
  q=t; 
  for (i=n-1;i>0;i--)
     {
  t=( struct listnode *) malloc ( sizeof ( struct listnode));
  scanf ( "%d" ,&t->data);
  q->next=t;
  q=t;
   }
  q->next=NULL;
}
 
void listinsert( struct listnode * *a, struct listnode * *b) 
{ /*将两个链表按递增序列排序*/
  struct listnode *pa,*pb,*other,*la,*pre;
  la=( struct listnode *) malloc ( sizeof ( struct listnode));
  la->next=*a;
  pa=*a;   
  pb=*b;
  pre=la;  
  while (pa&&pb)
   {
  if (pa->data<pb->data)
    {  
   pre=pre->next;
   pa=pa->next;
   }
  else if (pa->data>pb->data)
  {
   other=( struct listnode *) malloc ( sizeof ( struct listnode));
   other->data=pb->data;
   other->next=pa;
   pre->next=other;
   pre=other;
   pb=pb->next;
    }
  
  else
  {
   pre=pre->next;
   pa=pa->next;
   pb=pb->next;
   }
  }
  
  if (!pa)
  {
  while (pb)
  {
   other=( struct listnode *) malloc ( sizeof ( struct listnode));
   other->data=pb->data;  
         pre->next=other;
   pre=pre->next;
   pb=pb->next;
  }
  pre->next=NULL;
  }
  *a=la->next;
  free (la);
}
 
void readlist( struct listnode *p)
{ /*遍历链表并输出最终结果*/
  struct listnode *q;
  q=p;
  printf ( "链表的排序结果为:\n" );
  while (q!=NULL)
    {
  printf ( "%3d" ,q->data);
  q=q->next;
  }
  printf ( "\n" );
}

运行结果 。

C语言中数据结构之链表归并排序实例代码

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持! 。

原文链接:http://blog.csdn.net/johnwcheung/article/details/50815932 。

最后此篇关于C语言中数据结构之链表归并排序实例代码的文章就讲到这里了,如果你想了解更多关于C语言中数据结构之链表归并排序实例代码的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com