데이터 구조 (순서 표 의 현지 역 치 및 삽입)
//
#include<stdio.h>
#include<stdlib.h>
#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10
#define OVERFLOW 0
#define OK 1
typedef int Status;
typedef int ElemType;
typedef struct{
ElemType *elem;
int length;
int listsize;
}Sqlist;//
Sqlist L;
Status InitList_Sq()
{
L.elem=(ElemType *)malloc(LIST_INIT_SIZE*sizeof(ElemType)) ;
if(!L.elem) exit(OVERFLOW);
L.length=0;
L.listsize=LIST_INIT_SIZE;
return OK;
}//
void Input()
{
int i=0,n;
printf("Plese input datas except 0
");
printf("Type 0 for stopping input!
");
scanf("%d",&n);
while(n!=0&&i<100){
L.elem[i]=n;
L.length++;
i++;
scanf("%d",&n);
}
printf("The contents of the sqlist are
");
for(i = 0; i < L.length; i++)
printf("%d ", L.elem[i]);
printf("
");
}//
void Reverse(Sqlist *L)
{
int i,temp;
int low=0;
int high=L->length-1;
for(i=0; i<L->length/2;i++){
temp=L->elem[low];
L->elem[low]=L->elem[high];
L->elem[high]=temp;
low++;
high--;
}
}//
void Output(Sqlist L)
{
printf("The contents of the reversed sqlist are
");
int i;
for(i=0;i<L.length;i++)
printf("%d ",L.elem[i]);
printf("
");
}//
void Insert()
{
int i,j,x;
printf("Please input the data that you want to intert:");
scanf("%d",&x);
for(i=0;i<L.length;i++)
{
if(x<L.elem[i])
{
for(j=L.length;j==i;j--)
{
L.elem[j]=L.elem[j-1];
}
L.elem[i]=x;
}
}
printf("The new contents of the sqlist are:");
for(i=0;i<L.length;i++)
printf("%d ",L.elem[i]);
printf("
");
}// x
int main(){
InitList_Sq();
Input();
Reverse(&L);
Output(L);
Insert();
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.