訪客只能看到部份內容,免費 加入會員 或由臉書 Google 可以看到全部內容
// #include <stdlib.h> // void *realloc( void *ptr, size_t size ); your_linkedlist_type * list; if ( (list = (your_linkedlist_type *) realloc( (void *) list, _size_u_want) == NULL ) { printf("Reallocation Failed\n'); exit(0); }