单链表的定义

82 阅读1分钟
typedef struct ListNode {
    int data;
    struct ListNode *next;
} ListNode,*LinkList;