cFree编辑器报错:parse error at end of input 求助高手^^^^^^^
#include<stdio.h>#include<stdlib.h>#include<string.h>#include<malloc.h>typedefintStat...
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
typedef int Status;
typedef int ElemType;
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define LIST_INIT_SIZE 10
#define LISTINCREMENT 10
typedef struct{
ElemType *elem;
int length;
int listsize;
}SqList;
Status InitList_Sq(SqList L) {
// 算法2.3
// 构造一个空的线性表L。
L.elem = (ElemType*)malloc(LIST_INIT_SIZE*sizeof(ElemType));
//if (!L.elem) return OK; // 存储分配失败
L.length = 0; // 空表长度为0
L.listsize = LIST_INIT_SIZE; // 初始存储容量
return OK;
} // InitList_Sq
void main(){
int select,i;
SqList List;
do{
printf("操作:\n");
printf("1建立顺序线性表并写入10个自然数\n");
printf("2插入顺序线性表元素\n");
printf("3删除顺序线性表元素\n");
printf("4打印全表\n");
scanf("%d",&select);
switch (select){
case 1:{
//int i;
InitList_Sq(List);
for(i=0;i<10;i++){
List.elem[i]=i+1;
printf("dddd");
}
default:{
printf("dddd");
}
}
}while(select!=0);
} 展开
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
typedef int Status;
typedef int ElemType;
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define LIST_INIT_SIZE 10
#define LISTINCREMENT 10
typedef struct{
ElemType *elem;
int length;
int listsize;
}SqList;
Status InitList_Sq(SqList L) {
// 算法2.3
// 构造一个空的线性表L。
L.elem = (ElemType*)malloc(LIST_INIT_SIZE*sizeof(ElemType));
//if (!L.elem) return OK; // 存储分配失败
L.length = 0; // 空表长度为0
L.listsize = LIST_INIT_SIZE; // 初始存储容量
return OK;
} // InitList_Sq
void main(){
int select,i;
SqList List;
do{
printf("操作:\n");
printf("1建立顺序线性表并写入10个自然数\n");
printf("2插入顺序线性表元素\n");
printf("3删除顺序线性表元素\n");
printf("4打印全表\n");
scanf("%d",&select);
switch (select){
case 1:{
//int i;
InitList_Sq(List);
for(i=0;i<10;i++){
List.elem[i]=i+1;
printf("dddd");
}
default:{
printf("dddd");
}
}
}while(select!=0);
} 展开
2个回答
展开全部
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define LIST_INIT_SIZE 10
#define LISTINCREMENT 10
typedef int Status;
typedef int ElemType;
typedef struct{
ElemType *elem;
int length;
int listsize;
}SqList;
Status InitList_Sq(SqList L) {
// 算法2.3
// 构造一个空的线性表L。
L.elem = (ElemType*)malloc(LIST_INIT_SIZE*sizeof(ElemType));
//if (!L.elem) return OK; // 存储分配失败
L.length = 0; // 空表长度为0
L.listsize = LIST_INIT_SIZE; // 初始存储容量
return OK;
} // InitList_Sq
void main(){
int select,i;
SqList List;
do{
printf("操作:\n");
printf("1建立顺序线性表并写入10个自然数\n");
printf("2插入顺序线性表元素\n");
printf("3删除顺序线性表元素\n");
printf("4打印全表\n");
scanf("%d",&select);
switch (select){
case 1:{
//int i;
InitList_Sq(List);
for(i=0;i<10;i++){
List.elem[i]=i+1;
printf("dddd");
}
default:{
printf("dddd");
}
}
}
}while(select!=0);
}
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#define OK 1
#define ERROR 0
#define OVERFLOW -2
#define LIST_INIT_SIZE 10
#define LISTINCREMENT 10
typedef int Status;
typedef int ElemType;
typedef struct{
ElemType *elem;
int length;
int listsize;
}SqList;
Status InitList_Sq(SqList L) {
// 算法2.3
// 构造一个空的线性表L。
L.elem = (ElemType*)malloc(LIST_INIT_SIZE*sizeof(ElemType));
//if (!L.elem) return OK; // 存储分配失败
L.length = 0; // 空表长度为0
L.listsize = LIST_INIT_SIZE; // 初始存储容量
return OK;
} // InitList_Sq
void main(){
int select,i;
SqList List;
do{
printf("操作:\n");
printf("1建立顺序线性表并写入10个自然数\n");
printf("2插入顺序线性表元素\n");
printf("3删除顺序线性表元素\n");
printf("4打印全表\n");
scanf("%d",&select);
switch (select){
case 1:{
//int i;
InitList_Sq(List);
for(i=0;i<10;i++){
List.elem[i]=i+1;
printf("dddd");
}
default:{
printf("dddd");
}
}
}
}while(select!=0);
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
网易云信
2023-12-06 广告
2023-12-06 广告
UIkit是一套轻量级、模块化且易于使用的开源UI组件库,由YOOtheme团队开发。它提供了丰富的界面元素,包括按钮、表单、表格、对话框、滑块、下拉菜单、选项卡等等,适用于各种类型的网站和应用程序。UIkit还支持响应式设计,可以根据不同...
点击进入详情页
本回答由网易云信提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询