大家帮我看一下下面的程序怎么改?
在VC下运行
#include "stdio.h"
typedef int Elemtype;// 表的元素类型为 int
# define maxlen 10 //分配的存储空间为10
# define N 6
struct ListSq
{
Elemtype e[maxlen];//存放元素
int len;//线性表长度
}
//表的创建方法
void Create_Sq(ListSq &L,Elemtype A[],int n)
{
int i;
for(i=0;i<n;i++)
L.len=A[i];//给元素赋值
L.len=n;//置线性表的长度
}
//主函数
void main()
{
ListSq L;
int A[N];
int i, elem;
printf("请输入线性表的元素:\n");
for (int j=0;j<N;j++)
scanf("%d",&A[j]);//将线性表的元素存放到A数组中
Create_Sq(L,A,N);//调用创建算法创建表
}
错误信息为
C:\Documents and Settings\Guest\和.cpp(11) : error C2628: 'ListSq' followed by 'void' is illegal (did you forget a ';'?)
Error executing cl.exe.
----------------解决方案--------------------------------------------------------
struct ListSq
{
Elemtype e[maxlen];//存放元素
int len;//线性表长度
};
----------------解决方案--------------------------------------------------------
这儿怎么了?能不能讲清楚一点??
谢谢
----------------解决方案--------------------------------------------------------
眼睛睁大看
----------------解决方案--------------------------------------------------------
改好了
可是有了两个警告
C:\Documents and Settings\Guest\和.cpp(23) : warning C4101: 'i' : unreferenced local variable
C:\Documents and Settings\Guest\和.cpp(23) : warning C4101: 'elem' : unreferenced local variable
和.obj - 0 error(s), 2 warning(s)
----------------解决方案--------------------------------------------------------
document.body.clientWidth*0.5) {this.resized=true;this.width=document.body.clientWidth*0.5;this.style.cursor='pointer';} else {this.onclick=null}" alt="" />
----------------解决方案--------------------------------------------------------
#include "stdio.h"
typedef int Elemtype;/* 表的元素类型为 int */
# define maxlen 10 /* 分配的存储空间为10 */
# define N 6
struct ListSq
{
Elemtype e[maxlen];/* 存放元素 */
int len;/* 线性表长度 */
};
/* 表的创建方法 */
void Create_Sq(struct ListSq *L,Elemtype A[],int n)
{
int i;
for(i=0;i<n;i++)
L->len=A[i];/* 给元素赋值 */
L->len=n;/* 置线性表的长度 */
}
void main()
{
struct ListSq L;
int A[N];
int i,j,elem;
printf("input the elem:\n");
for (j=0;j<N;j++)
scanf("%d",&A[j]);/* 将线性表的元素存放到A数组中 */
Create_Sq(&L,A,N);/* 调用创建算法创建表 */
getch();
}
这样就可以了
----------------解决方案--------------------------------------------------------
哦
谢谢
----------------解决方案--------------------------------------------------------