데이터 구조 - 순서 표 조작 집합 (C 언어)

3712 단어 데이터 구조
데이터 구조 - 순서 표 조작 집합 (C 언어)
이 문 제 는 순서 표 의 조작 집 을 실현 하도록 요구한다.
함수 인터페이스 정의:
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;
}

좋은 웹페이지 즐겨찾기