C/자료구조 (17) 썸네일형 리스트형 문과생이 이해한 단일 연결 리스트(삽입 연산) 출처 : + 학교 수업 #include #include typedef struct { int data; struct node* link; }node; node* insert_first(node* head, int x) { node* p = (node*)malloc(sizeof(node)); p->data = x; p->link = head; //head는 노드 생성을 안했으니까 head->link 연산이 안 됨 head= p; return head; } node* insert(node* head, node* pre, int s) { node* p = (node*)malloc(sizeof(node)); p->data = s; p->link = pre->link; pre->link = p; return he.. 이전 1 2 3 다음