順序表の作成と巡回
17523 ワード
n値およびn個の整数を読み込み、順序表を作成し、出力を巡回します.入力フォーマット:nおよびn個の整数出力フォーマットを読み込みます.n個の整数を出力し、スペースで区切ります.
入力サンプル:
入力サンプル:
4
-3 10 20 78
出力例:-3 10 20 78
コード:#include <stdio.h>
#include <stdlib.h>
#include<algorithm>
using namespace std;
#define MAXSIZE 100
typedef int ElemType;/* int */
typedef struct
{
ElemType *elem;
int length;
} SqList;
int n;
void InitList(SqList &L,int n)
{
L.elem=(ElemType*)malloc(sizeof(MAXSIZE));/* :( *)malloc( )*/
L.length=0;
ElemType q;
for(int i=0; i<n; i++)
{
scanf("%d",&q);
L.elem[L.length++]=q;
}
for(int i=0; i<L.length; i++)
printf("%d%c",L.elem[i],i==L.length-1?'
':' ');
return;
}
int main()
{
scanf("%d",&n);
SqList L;
InitList(L,n);
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <malloc.h>
#include<algorithm>
using namespace std;
#define MAXSIZE 100
typedef int ElemType;/* int */
typedef struct
{
ElemType elem[MAXSIZE];
int last;
} SqList,*List;
int n;
void InitList(List &L,int n)
{
L=(SqList*)malloc(sizeof(SqList));
L->last=n-1;
for(int i=0; i<=L->last; i++)
{
scanf("%d",&L->elem[i]);
}
for(int i=0; i<=L->last; i++)
printf("%d%c",L->elem[i],i==L->last?'
':' ');
}
int main()
{
scanf("%d",&n);
List L;/*List */
InitList(L,n);
return 0;
}