데이터 구조 - 순서 표 조작 집합 (C 언어)
3712 단어 데이터 구조
이 문 제 는 순서 표 의 조작 집 을 실현 하도록 요구한다.
함수 인터페이스 정의:
List MakeEmpty();
Position Find( List L, ElementType X );
bool Insert( List L, ElementType X, Position P );
bool Delete( List L, Position P );
그 중에서 List 구 조 는 다음 과 같다.
typedef int Position;
typedef struct LNode *List;
struct LNode {
ElementType Data[MAXSIZE];
Position Last; /* */
};
각 조작 함수 의 정의:
List MakeEmpty(): ;
Position Find (List L, Element Type X): 선형 표 의 X 위 치 를 되 돌려 줍 니 다.찾 지 못 하면 ERROR 로 돌아 가기;
bool Insert (List L, Element Type X, Position P): X 를 위치 P 에 삽입 하고 true 로 되 돌려 줍 니 다.공간 이 가득 차 면 "FULL"을 인쇄 하고 false 로 돌아 갑 니 다.만약 인자 P 가 불법 위 치 를 가리 키 면 "ILLEGAL POSITION"을 인쇄 하고 false 를 되 돌려 줍 니 다.
bool Delete (List L, Position P): 위치 P 의 요 소 를 삭제 하고 true 로 되 돌려 줍 니 다.매개 변수 P 가 불법 위 치 를 가리 키 면 'POSITION P EMPTY' (그 중 P 는 매개 변수 값) 를 인쇄 하고 false 를 되 돌려 줍 니 다.
심판 테스트 프로그램 샘플:
#include
#include
#define MAXSIZE 5
#define ERROR -1
typedef enum {false, true} bool;
typedef int ElementType;
typedef int Position;
typedef struct LNode *List;
struct LNode {
ElementType Data[MAXSIZE];
Position Last; /* */
};
List MakeEmpty();
Position Find( List L, ElementType X );
bool Insert( List L, ElementType X, Position P );
bool Delete( List L, Position P );
int main()
{
List L;
ElementType X;
Position P;
int N;
L = MakeEmpty();
scanf("%d", &N);
while ( N-- ) {
scanf("%d", &X);
if ( Insert(L, X, 0)==false )
printf(" Insertion Error: %d is not in.
", X);
}
scanf("%d", &N);
while ( N-- ) {
scanf("%d", &X);
P = Find(L, X);
if ( P == ERROR )
printf("Finding Error: %d is not in.
", X);
else
printf("%d is at position %d.
", X, P);
}
scanf("%d", &N);
while ( N-- ) {
scanf("%d", &P);
if ( Delete(L, P)==false )
printf(" Deletion Error.
");
if ( Insert(L, 0, P)==false )
printf(" Insertion Error: 0 is not in.
");
}
return 0;
}
/* */
입력 예시:
6 1 2 3 4 5 6 3 6 5 1 2 -1 6
출력 예시:
FULL Insertion Error: 6 is not in. Finding Error: 6 is not in. 5 is at position 0. 1 is at position 4. POSITION -1 EMPTY Deletion Error. FULL Insertion Error: 0 is not in. POSITION 6 EMPTY Deletion Error. FULL Insertion Error: 0 is not in.
List MakeEmpty(){
List p;
p = (List)malloc(sizeof(struct LNode));
p->Last = -1;
return p;
}
Position Find( List L, ElementType X ){
int i;
for(i = 0; i <= L->Last; i++){
if(X= =L->Data[i]){
return i;
}
}
return ERROR;
}
bool Insert( List L, ElementType X, Position P ){
if(L->Last==MAXSIZE-1){
printf("FULL");
return false;
}
if(P<0||P>L->Last+1){
printf("ILLEGAL POSITION");
return false;
}
int i;
for(i = L->Last+1; i > P; i--){
L->Data[i] = L->Data[i-1];
}
L->Data[i] = X;
L->Last++;
return true;
}
bool Delete( List L, Position P ){
int i;
if(P<0||P>L->Last){
printf("POSITION %d EMPTY",P);
return false;
}
for(i = P; i < L->Last; i++){
L->Data[i] = L->Data[i+1];
}
L->Last--;
return true;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.