单链表的定义 cxzxy 2022-04-14 82 阅读1分钟 typedef struct ListNode { int data; struct ListNode *next; } ListNode,*LinkList;