博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
两个有序链表合成一个有序链表
阅读量:6046 次
发布时间:2019-06-20

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

#include<stdio.h>

#include<stdlib.h>
typedef struct list
{
 int data;
 struct list*next;
}List;
List*hebin(List*head1,List*head2)
{ List*head,*rear;
 if(head1==NULL) return head2;
 if(head2==NULL) return head1;
 if(head1->data<head2->data)
 {
  rear=head=head1;
  head1=head1->next;
  } 
  else
  {
   rear=head=head2;
   head2=head2->next;
  }
  while(head1!=NULL && head2!=NULL)
  {
   if(head1->data<head2->data)
   {
    rear->next=head1;
   rear=head1;
   head1=head1->next; 
   } 
   else
   {
   rear->next=head2;
   rear=head2;
   head2=head2->next;  
   }
  }
  if(head1!=NULL)
   rear->next=head1;
 else
  rear->next=head2;
  return head;
}
List*insert_list_order(List*head,int data)
{ List*newnode=(List*)malloc(sizeof(List));
 List*p=head;
 newnode->data=data;
 newnode->next=NULL;
 if(head==NULL) return newnode;
 if(head->data>data)
 {
  newnode->next=head;
  head=newnode;
  return head;
 }
 while(head->next && head->next->data<data)
 {
  head=head->next;
 }
 if(!head->next) head->next=newnode;
 else
 {
  newnode->next=head->next;
  head->next=newnode; 
 }
 return p;
}
void print_list(List*head)
{
 while(head)
 {
  printf("%d\n",head->data);
  head=head->next;
 }
}
int main()
{
 int i,j;
 List*head1=NULL;
 List*head2=NULL;
 List*head;
 for(i=0;i<10;i+=2)
 {
  head1=insert_list_order(head1,i); 
 }
 printf("head1:\n");
 print_list(head1); 
 for(j=1;j<20;j+=3)
 {
  head2=insert_list_order(head2,j); 
 }
 printf("head2:\n");
 print_list(head2);
 head=hebin(head1,head2);
 printf("head:\n");
 print_list(head); 
}

转载于:https://www.cnblogs.com/ITfeng/archive/2012/05/08/2490689.html

你可能感兴趣的文章
【Oracle】使用hanganalyze 命令分析数据库hang【转】
查看>>
Python 应用剖析工具介绍
查看>>
JSP标准标签库
查看>>
ceph - adding A monitor (MANUAL)
查看>>
MYSQL的慢查询分析
查看>>
Go系统下的自定义属性文件的增删改查
查看>>
mysql一些比较冷门的查询
查看>>
MapXtreme 2005 学习心得 工具(六)
查看>>
以太坊DAO之时间锁定Multisig
查看>>
我的友情链接
查看>>
java在src/test/resourse下读取properties文件
查看>>
cloud-zoom的例子
查看>>
HTML学习1
查看>>
vmware converter p2v ubuntu 12.04
查看>>
Phantom Korea
查看>>
APUE读书笔记-07进程环境(5)
查看>>
UCenter登陆 去除验证码
查看>>
一次apache的排错
查看>>
***之open***帐号密码登录
查看>>
我的友情链接
查看>>