[데이터 구조] SLL에 숫자 데이터 추가하기
#include #include struct node { int data; struct node *next; }; struct node *head; void addToSLL(int n) { struct node *cur; cur = (struct node *)malloc(sizeof(struct node)); cur->data = n; cur->next = 0; if (head == 0) { head = cur; return; } else { struct node *temp = head; while (temp->next != 0) { temp = temp->next; } temp->next = cur; return; } } void showSLL() { struct node *cur = head; whi..
IT/자료 구조
2020. 3. 26. 17:21