C언어 선형리스트 질문입니다.
글쓴이: student93 / 작성시간: 일, 2016/01/10 - 4:19오후
입문자입니다.
구조체의 배열을 선형리스트로 변환시키고 싶습니다.
도움좀 주세요 ㅠㅠ
#include <stdio.h> #include <stdlib.h> typedef struct { char name[10]; int age; int weight; }DATA; struct linked_list { DATA d; struct linked_list *next; }; typedef struct linked_list ELEMENT; typedef ELEMENT *LINK; int main(void) { DATA information[10]; LINK h; h = create_l(information); } LINK create_l(DATA information[]) { LINK head; if (information[0] == NULL) /*이 부분 왜 안되는 것일 까요 ....*/ return NULL; else { head = malloc(sizeof(ELEMENT)); head->d = information[0]; head->next = create_l(information + 1); return head; } }
Forums:
참고해보세요.
----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.
매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.
각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com
댓글 달기