6 - 5 체인 테이블 조작 집합 (20 point (s))

4373 단어 데이터 구조
6 - 5 체인 테이블 조작 집합 (20 point (s))
본 문 제 는 체인 테이블 의 조작 집합 을 실현 할 것 을 요구한다.
함수 인터페이스 정의:
Position Find( List L, ElementType X );
List Insert( List L, ElementType X, Position P );
List Delete( List L, Position P );

그 중에서 List 구조 정 의 는 다음 과 같다.
typedef struct LNode *PtrToLNode;
struct LNode {
    ElementType Data;
    PtrToLNode Next;
};
typedef PtrToLNode Position;
typedef PtrToLNode List;

각 조작 함수 의 정의:Position Find( List L, ElementType X ): 선형 표 에서 처음으로 X 가 나타 난 위 치 를 되 돌려 줍 니 다.찾 지 못 하면 ERROR 로 돌아 가기;List Insert( List L, ElementType X, Position P ): X 를 위치 P 가 가리 키 는 노드 에 삽입 하기 전에 링크 의 헤더 로 되 돌려 줍 니 다.인자 P 가 불법 위 치 를 가리 키 면 '잘못된 위치 for Insertion' 을 인쇄 하여 ERROR 로 돌아 갑 니 다.List Delete( List L, Position P ): 위치 P 의 요 소 를 삭제 하고 링크 의 헤더 로 되 돌려 줍 니 다.인자 P 가 불법 위 치 를 가리 키 면 'Wrong Position for Deleteion' 을 인쇄 하고 ERROR 로 되 돌려 줍 니 다.
심판 테스트 프로그램 샘플:
#include 
#include 

#define ERROR NULL
typedef int ElementType;
typedef struct LNode *PtrToLNode;
struct LNode {
    ElementType Data;
    PtrToLNode Next;
};
typedef PtrToLNode Position;
typedef PtrToLNode List;

Position Find( List L, ElementType X );
List Insert( List L, ElementType X, Position P );
List Delete( List L, Position P );

int main()
{
    List L;
    ElementType X;
    Position P, tmp;
    int N;

    L = NULL;
    scanf("%d", &N);
    while ( N-- ) {
        scanf("%d", &X);
        L = Insert(L, X, L);
        if ( L==ERROR ) printf("Wrong Answer
"); } scanf("%d", &N); while ( N-- ) { scanf("%d", &X); P = Find(L, X); if ( P == ERROR ) printf("Finding Error: %d is not in.
", X); else { L = Delete(L, P); printf("%d is found and deleted.
", X); if ( L==ERROR ) printf("Wrong Answer or Empty List.
"); } } L = Insert(L, X, NULL); if ( L==ERROR ) printf("Wrong Answer
"); else printf("%d is inserted as the last element.
", X); P = (Position)malloc(sizeof(struct LNode)); tmp = Insert(L, X, P); if ( tmp!=ERROR ) printf("Wrong Answer
"); tmp = Delete(L, P); if ( tmp!=ERROR ) printf("Wrong Answer
"); for ( P=L; P; P = P->Next ) printf("%d ", P->Data); return 0; } /* */

입력 예시:
6
12 2 4 87 10 2
4
2 12 87 5

출력 예시:
2 is found and deleted.
12 is found and deleted.
87 is found and deleted.
Finding Error: 5 is not in.
5 is inserted as the last element.
Wrong Position for Insertion
Wrong Position for Deletion
10 4 2 5

code:
Position Find( List L, ElementType X ){
    while(L!=NULL){
        if(L->Data == X){
            return L;
        }
        L = L->Next;
    }
    return ERROR;
}
List Insert( List L, ElementType X, Position P ){
    //printf("1111111111
"); List head = L;// List p = (List)malloc(sizeof(struct LNode)); p->Data = X; // p->Next = NULL; if(P==L){ p->Next = L;// , return p; } // printf("22222222222
"); while(L!=NULL){// , P==L->Next; if(P==L->Next){ List temp = L->Next; L->Next = p; p->Next = temp; // printf("333333333333333
"); return head;// } L = L->Next;// , } printf("Wrong Position for Insertion
");// ERROR return ERROR; } List Delete( List L, Position P ){ // : if(L == P){ L = L->Next; return L; } List head = L;// // , while(L!=NULL){ if(L->Next==P){ List temp = L->Next->Next; L->Next = temp;//L->Next L->NEXT return head;// } L = L->Next;// } // printf("Wrong Position for Deletion
"); return ERROR; }

좋은 웹페이지 즐겨찾기