圖解反轉單向鏈表

  核心代碼 /**  * Definition for singly-linked list.  * struct ListNode {  *     int val;  *     struct ListNode *pNext;  * };  */ /* 反轉函數,輸入待反轉鏈表頭,返回反轉後的鏈表頭 */ struct ListNode* reverseList(struct ListNod
相關文章
相關標籤/搜索