| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 873 人关注过本帖
标题:新手求助!顺序表逆置问题!
只看楼主 加入收藏
看我来C
Rank: 1
等 级:新手上路
帖 子:83
专家分:0
注 册:2008-3-4
结帖率:100%
收藏
 问题点数:0 回复次数:2 
新手求助!顺序表逆置问题!
各位大侠~~~今天做了一道关于把顺序表A中的元素逆置到顺序表B中的问题!我编的代码如下:
#include<stdio.h>
#define MaxSize 100
typedef int DataType;
#include"SeqList.h"
void main(void)
{
SeqList AList;
int i,x,a[10],b[10];
printf("\n");
ListInitiate(&AList);
for(i=0;i<100;i++)
  {
if(ListInsert(&AList,i,i+1)==0)
   {
printf("\nWrong\n");
return;
   }
  }
for(i=0;i<ListLenth(AList);i++)
 {
if(ListGet(AList,i,&x)==0)
  {
printf("wrong!\n");
return;
  }
else printf("\n");printf("List A:%d  ",x);
 }
int j,n;
 {
for(j=1;j<=10;j++)
a[j]=x;
for(n=10;n>0;n--)
b[n]=a[j];
  }
SeqList BList;
ListInitiate(&BList);
for(i=1;i<+10;i++)
for(n=1;n<+10;n++)
  {
ListInsert(BList,i,b[n]);
  }
for(n=1;n<=10;n++)
printf("List B:%d  ",b[n]);

}
错误为:
Error newlist.cpp 40: Cannot convert 'SeqList' to 'SeqList *' in function main()

Error newlist.cpp 40: Type mismatch in parameter 'L' in call to 'ListInsert(SeqList *,int,int)' in function main()
怎么解决这个问题啊??请指点下~~~不胜感激
搜索更多相关主题的帖子: 顺序表 AList printf 
2008-03-10 00:41
無邪的睡脸
Rank: 2
等 级:等待验证会员
威 望:1
帖 子:344
专家分:13
注 册:2007-9-11
收藏
得分:0 
没SeqList.h这个文件无法帮你调试啊!
2008-03-10 07:55
看我来C
Rank: 1
等 级:新手上路
帖 子:83
专家分:0
注 册:2008-3-4
收藏
得分:0 
忘了吧“SeqList.h"发上来了
typedef struct
{
DataType list[MaxSize];
int size;
}
SeqList;
void ListInitiate(SeqList *L)
{
L->size=0;
}
int ListLenth(SeqList L)
{
return L.size;
}
int ListInsert(SeqList *L,int i,DataType x)
{
int j;
if(L->size>=MaxSize)
{
printf("SeqList is full\n");
return 0;
}
else if(i<0||i>L->size)
{
printf("canshu error!\n");
return 0;
}
else
{
for(j=L->size;j>i;j--)L->list[j]=L->list[j-1];
L->list[i]=x;
L->size++;
return 1;
}
}
int ListDelete(SeqList *L,int i,DataType *x)
{
int j;
if(L->size<=0)
{
printf("list empty!can not delete!\n");
return 0;
}
else if(i<0||i>L->size-1)
{
printf("canshu error!\n");
return 0;
}
else
{
*x=L->list[i];
for(j=i+1;j<=L->size-1;j++)L->list[i-1]=L->list[j];
L->size--;
return 1;
}
}
int ListGet(SeqList L,int i,DataType *x)
{
if(i<0||i>L.size-1)
{
printf("canshu error!\n");
return 0;
}
else
{
*x=L.list[i];
return 1;
}
}
2008-03-10 15:15
快速回复:新手求助!顺序表逆置问题!
数据加载中...
 
   



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

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