[꼭대기] 데이터 구조 - 역순 출력

데이터 구조 역순 출력
#include<stdlib.h>
#include<stdio.h>

typedef struct link{
   int data;
   struct link *next;

}link;


//    
void create(link *head)
{

	link *p=NULL;
	int n;
	head->next=NULL;  	      //         

	printf("     :");
	scanf("%d",&n);

	while( n!=0 )
	{
	  p=(link *)malloc(sizeof(link));
	  p->data=n;
	  p->next=head->next;   //              
	  head->next=p;	        //       
	 
	  scanf("%d",&n);
	}
}


//    
void out(link *head)
{
	link *p=head->next;
	while(p!=NULL)
	{
	 printf("%d",p->data);
	 p=p->next;
	}
	printf("
"); } // void main(){ link *head=NULL; head=(link *)malloc(sizeof(link)); create(head); printf(" :"); out(head); }

좋은 웹페이지 즐겨찾기