| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 470 人关注过本帖
标题:请各位帮忙纠错 有关MergeList
取消只看楼主 加入收藏
xiaohouzipas
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2010-4-10
结帖率:0
收藏
 问题点数:0 回复次数:0 
请各位帮忙纠错 有关MergeList
#include <math.h>
#include <stdio.h>
#include <stdlib.h>

#define OK                  1
#define ERROR               0
#define OVERFLOW           -2
#define LIST_INIT_SIZE     10
#define LISTINCREMENT      10
#define NUM                10

typedef struct LNode{
int data;
struct LNode *next;
}LNode,*LinkList;
/*P28*/

LinkList La;LinkList Lb;LinkList Lc;int e;
/*全局*/

void GreatList_La(int n){
 LNode *p;LinkList L;int i;
 L=(LinkList)malloc(sizeof(LNode));
 L->next=NULL;
 for(i=n;i>0;--i){
  p=(LinkList)malloc(sizeof(LNode));
  scanf("%d",&p->data);
  p->next=L->next;L->next=p;
 }
}

void GreatList_Lb(int n){
 LNode *p;LinkList L;int i;
 L=(LinkList)malloc(sizeof(LNode));
 L->next=NULL;
 for(i=n;i>0;--i){
  p=(LinkList)malloc(sizeof(LNode));
  scanf("%d",&p->data);
  p->next=L->next;L->next=p;
 }
}

void MergeList_L(){
 LNode *next,*h,*pa,*pb,*pc; int k;
 pa=La->next;pb=Lb->next;
 Lc=pc=La;
 while(pa&&pb){
  if(pa->data<=pb->data){
   pc->next=pa;pc=pa;pa=pa->next;
  }
  else{pc->next=pb;pc=pb;pb=pb->next;}
 }
 pc->next=pa?pa:pb;
 free(Lb);
 h=Lc->next;
 printf("new list:\n");
 for(k=0;k<20;k++){
  printf("%3d",h->data);
  h=h->next;
 }
}

void main()
{
 int i1,i2,e;
 printf("input list:\n");
 GreatList_La(NUM);
 printf("input other list:\n");
 GreatList_Lb(NUM);
 MergeList_L();
 getch();
}
搜索更多相关主题的帖子: MergeList 纠错 
2010-04-18 15:52
快速回复:请各位帮忙纠错 有关MergeList
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.019309 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved