PTA 실험 11 - 2 - 3 역순 데이터 구축 링크 (20 점)

실험 11 - 2 - 3 역순 데이터 구축 링크 (20 점)
이 문 제 는 입력 데이터 의 역순 에 따라 링크 를 만 드 는 함 수 를 실현 해 야 합 니 다.
함수 인터페이스 정의:
struct ListNode *createlist();

함수 createlist 는 scanf 를 이용 하여 입력 에서 일련의 정 수 를 가 져 옵 니 다. - 1 까지 읽 었 을 때 입력 이 끝 났 음 을 표시 합 니 다.입력 데이터 의 역순 에 따라 링크 를 만 들 고 링크 헤더 지침 을 되 돌려 줍 니 다.링크 노드 구조 정 의 는 다음 과 같다.
struct ListNode {
     
    int data;
    struct ListNode *next;
};

심판 테스트 프로그램 샘플:
#include 
#include 

struct ListNode {
     
    int data;
    struct ListNode *next;
};

struct ListNode *createlist();

int main()
{
     
    struct ListNode *p, *head = NULL;

    head = createlist();
    for ( p = head; p != NULL; p = p->next )
        printf("%d ", p->data);
    printf("
"
); return 0; } /* */

입력 예시:
1 2 3 4 5 6 7 -1

출력 예시:
7 6 5 4 3 2 1 
struct ListNode *createlist(){
     //        
	struct ListNode *head=NULL,*p,*h=NULL;//h    
	int x;
	while(scanf("%d",&x)&&x!=-1){
     
		p=(struct ListNode *)malloc(sizeof(struct ListNode));
		p->data=x;
		p->next=NULL;
		if(h==NULL){
     //     
			h=(struct ListNode *)malloc(sizeof(struct ListNode));//     (   )
	        h->next=p;
		}
		else {
     //     
			p->next=h->next;
			h->next=p;
		}		
	}
	if(h==NULL)//    
		return NULL;
	head=h->next;//       ,          
	return head;
}

좋은 웹페이지 즐겨찾기