内核链表及二叉树文件
文件名:第六天-内核链表及二叉树.zip
include
include
include
include
include
struct student_info{ char name[4096]; short age; float height;};
typedef struct list_node{ struct student_info data; struct list_head list;} node_t;
node_t request_link_list_node(void) { node_t new_node; new_node = malloc(sizeof(node_t)); if(new_node == NULL) { perror("申请链表节点失败"); return NULL; }
509.43KB
文件大小:
评论区