当前位置: 代码迷 >> C语言 >> 两个链表合并 出了点问题
  详细解决方案

两个链表合并 出了点问题

热度:326   发布时间:2006-06-09 10:29:27.0
两个链表合并 出了点问题

/*系统提示说 我没模块 怎么回事*/
typedef int elemtype;
#include<stdio.h>
#define Max 100
#define error 0
#define ok 1
typedef struct
{
elemtype *elem;
int length;
}sqlist;

int Initlist_sq(sqlist *L)
{
L->elem=(elemtype *)malloc(Max*sizeof(elemtype));
if(L->elem==0)
return error;
L->length=0;
return ok;
}

int listlength(sqlist *L)
{
return L->length;
}

int locate(sqlist *L,elemtype e)
{
int i,L_len;
L_len=listlength(L);
for(i=0;i<L_len;i++)
{
if(L->elem[i]==e)
return ok;
else return error;
}
}

int listintsert(sqlist *L,int i,elemtype e)
{
int j,L_len;
L_len=listlength(L);
for(j=L_len;i>=i;j--)
{
L->elem[j]=L->elem[j-1];
L->elem[i-1]=e;
L->length++;
}
}

int Getelem(sqlist *L,int i,elemtype *e)
{
if(i<1||i>listlength(L))
return error;
*e=L->elem[i-1];
return ok;
}

int Makeup(sqlist *La,sqlist *Lb)
{
int La_len,Lb_len,i,e;
La_len=listlength(La);
Lb_len=listlength(Lb);
for(i=1;i<Lb_len;i++)
{
Getelem(Lb,i,&e);
if(!locate(La,e))
listinsert(La,++La_len,e);
}
}

main()
{
int i,n,m;
sqlist A,B;
Initlist(&A);
Initlist(&B);
scanf("%d,%d",&n,&m);
for(i=0;i<n;i++)
scanf("%d",&A.elem[i]);
for(i=0;i<m;i++)
scanf("%d",&B.elem[i]);
makeup(&A,&B);
for(i=0;i<A.length;i++)
printf("%d",A.elem[i]);
}

搜索更多相关的解决方案: 链表  int  elemtype  sqlist  length  

----------------解决方案--------------------------------------------------------
两个链表合并 出了点问题

/*系统提示说 我没模块 怎么回事*/
typedef int elemtype;
#include<stdio.h>
#define Max 100
#define error 0
#define ok 1
typedef struct
{
elemtype *elem;
int length;
}sqlist;

int Initlist_sq(sqlist *L)/*初始化链表*/
{
L->elem=(elemtype *)malloc(Max*sizeof(elemtype));
if(L->elem==0)
return error;
L->length=0;
return ok;
}

int listlength(sqlist *L)/*定义长度函数*/
{
return L->length;
}

int locate(sqlist *L,elemtype e)/*哪e与链表l中的元素比较*/
{
int i,L_len;
L_len=listlength(L);
for(i=0;i<L_len;i++)
{
if(L->elem[i]==e)
return ok;
else return error;
}
}

int listintsert(sqlist *L,int i,elemtype e)/*在链表l中第i个地方插入e*/
{
int j,L_len;
L_len=listlength(L);
for(j=L_len;i>=i;j--)
{
L->elem[j]=L->elem[j-1];
L->elem[i-1]=e;
L->length++;
}
}

int Getelem(sqlist *L,int i,elemtype *e)/*提出元素*/
{
if(i<1||i>listlength(L))
return error;
*e=L->elem[i-1];
return ok;
}

int Makeup(sqlist *La,sqlist *Lb)/*合并两链表*/
{
int La_len,Lb_len,i,e;
La_len=listlength(La);
Lb_len=listlength(Lb);
for(i=1;i<Lb_len;i++)
{
Getelem(Lb,i,&e);
if(!locate(La,e))
listinsert(La,++La_len,e);
}
}

main()
{
int i,n,m;
sqlist A,B;
Initlist(&A);
Initlist(&B);
scanf("%d,%d",&n,&m);
for(i=0;i<n;i++)
scanf("%d",&A.elem[i]);
for(i=0;i<m;i++)
scanf("%d",&B.elem[i]);
makeup(&A,&B);
for(i=0;i<A.length;i++)
printf("%d",A.elem[i]);


/*不好意思刚才没解释清楚*/


----------------解决方案--------------------------------------------------------
  相关解决方案