C언어#아무문제1 [아무문제] 정해진 그룹으로 역출력하는 프로그램 순서대로인 배열이 있으면 몇묶음씩을 거꾸로 출력하는 프로그램이다. 6 1 2 3 4 5 6 2 로 입력값을 집어 넣게 되면 출력값은 1->2->3->4->5->6->NULL 3->2->1->6->5->4->NULL 같이 나온다. #include #include typedef struct _Node{ int data; struct _Node* next; }Node; void printList(Node* head){ Node* ptr = head; while(ptr){ printf("%d",ptr->data); printf("->"); ptr = ptr->next; } printf("NULL"); printf("\n"); } void push(Node** head, int data){ Node* newNod.. 2020. 4. 24. 이전 1 다음