7-1 顺序表的建立及遍历 PTA
读入n值及n个整数,建立顺序表并遍历输出。
输入格式:
读入n及n个整数
输出格式:
输出n个整数,以空格分隔(最后一个数的后面没有空格)。
样例">输入样例:
在这里给出一组输入。例如:
4 -3 10 20 78
输出样例:
在这里给出相应的输出。例如:
-3 10 20 78
#include
#include
using namespace std;
#define MAXSIZE 20
typedef struct {
int *data;
int length;
}sqlist;
sqlist sqlist_creat(int size)
{
sqlist a;
a.data = (int*)malloc(sizeof(int)*size);
a.length=size;
return a;
}
void sqlist_free(sqlist *L)
{
free(L->data);
L->data=NULL;
L->leng
共有 0 条评论