반응형 List구조1 [자료구조] 01. List 구조 Baisc 예제 (C언어) List 구조에 대해서 Test 해볼수 있는 Basic 한 예제이다. #include #include #include #define NLEN 100 typedef struct _Fruit { char name[NLEN]; float score; struct _Fruit* next; }Fruit; void print_all(Fruit* head) { Fruit* search = head; printf("-------------------------------------\n"); printf("Head address = %x\n",(unsigned int)head); while(search != NULL) { printf("%x\t%s\t%f\t%x\n",(unsigned int)search, search-.. 2021. 7. 9. 이전 1 다음 반응형