我的这段程序(已简化)为什么不能在屏幕上输出啊,求帮忙。以下图片和代码就是出现的问题
#include
using namespace std;
#define MAXSIZE 50
typedef int Elemtype;
struct celltype
{
Elemtype data[MAXSIZE];
int length;
};
void Creat_List(celltype &L) //创建一个表(参数为引用)
{
int n; cout<<"你要输入表的长度:";
cin>>n; cout<<"输入你表中的元素:";
for(int i=0;i
{ cin>>L.data[i];
L.length++;
}
}
void Show_List(celltype &L) //向屏幕输出(参数为引用)
{ cout<<"顺序表如下"<<endl;
for(int i=0;i<L.length;i++)
cout<<L.data[i]<<"\t"; cout<<endl;
}
int main()
{ celltype L; //定义一个结构体变量 Creat_List(L);
Show_List(L);
getchar(); //用来暂停
getchar();
return 0;
}
数据结构初学者遇到的顺序表问题
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-