PTA 데이터 구조 와 알고리즘 문제 집 (중국어) 6 - 5 체인 테이블 조작 집

3898 단어 데이터 구조
6-5 체인 테이블 조작 집합 (20 분 하 다
본 문 제 는 체인 테이블 의 조작 집합 을 실현 할 것 을 요구한다.
함수 인터페이스 정의:
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

작성 자: 진 월
단위: 절강대학
시간 제한: 400ms
메모리 제한: 64MB
코드 길이 제한: 16KB
Position Find( List L, ElementType X ){
  while(L){
    if(L->Data == X){
      return L;
    }
    L = L->Next;
  }
  return ERROR;
}

List Insert( List L, ElementType X, Position P ){
  if(P == L){
    List Node = (List)malloc(sizeof(List));
    Node->Data = X;
    Node->Next = L;
    return Node;
  }
  List q = L;
  while(q){
    if(q->Next == P){
      List Node = (List)malloc(sizeof(List));
      Node->Data = X;
      Node->Next = q->Next;
      q->Next = Node;
      return L;
    }
    q = q->Next;
  }
  printf("Wrong Position for Insertion
"); return ERROR; } List Delete( List L, Position P ){ if(L == P){ return L->Next; } List q = L; while(q){ if(q->Next == P){ q->Next = q->Next->Next; return L; } q = q->Next; } printf("Wrong Position for Deletion
"); return ERROR; }

좋은 웹페이지 즐겨찾기