数据结构 L.elem=new ElemType[ListSize]
#include<stdio.h>#include<stdlib.h>#defineListSize100typedefintElemType;typedefstruct...
#include <stdio.h>
#include <stdlib.h>
#define ListSize 100
typedef int ElemType;
typedef struct
{
ElemType elem[ListSize];
int length;
}SeqList;
void InitList(SeqList& L){
L.elem=new ElemType[ListSize];
if (L.elem==NULL)
{
printf("储存分配失败!\n");
exit(1);
}
L.length=0;
}
报错:
error C2440: '=' : cannot convert from 'int *' to 'int [100]'
There are no conversions to array types, although there are conversions to references or pointers to arrays 展开
#include <stdlib.h>
#define ListSize 100
typedef int ElemType;
typedef struct
{
ElemType elem[ListSize];
int length;
}SeqList;
void InitList(SeqList& L){
L.elem=new ElemType[ListSize];
if (L.elem==NULL)
{
printf("储存分配失败!\n");
exit(1);
}
L.length=0;
}
报错:
error C2440: '=' : cannot convert from 'int *' to 'int [100]'
There are no conversions to array types, although there are conversions to references or pointers to arrays 展开
1个回答
展开全部
#include <stdio.h>
#include <stdlib.h>
#define ListSize 100
typedef int ElemType;
typedef struct
{
ElemType *elem;//这里应该定义指针的
int length;
}SeqList;
void InitList(SeqList& L){
L.elem=new ElemType[ListSize];
if (L.elem==NULL)
{
printf("储存分配失败!\n");
exit(1);
}
L.length=0;
}
int main()
{
SeqList L;
InitList(L);
}
网易云信
2023-12-06 广告
2023-12-06 广告
UIkit是一套轻量级、模块化且易于使用的开源UI组件库,由YOOtheme团队开发。它提供了丰富的界面元素,包括按钮、表单、表格、对话框、滑块、下拉菜单、选项卡等等,适用于各种类型的网站和应用程序。UIkit还支持响应式设计,可以根据不同...
点击进入详情页
本回答由网易云信提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |