linked list 썸네일형 리스트형 Simple Linked List (practice) #include #include #include typedef struct Node { int num; char data[80]; struct Node *next; } Node; // 전역변수 Node head; void add_node (int num, char *data) { Node *here = &head; Node *temp; temp = malloc(sizeof (Node)); temp->num = num; strcpy(temp->data, data); temp->next = NULL; while(here->next) { if (here->num num) { if (!here->next) { here->next = temp; return; } else if (here->next->num > t.. 더보기 이전 1 다음