LeetCode——1、鏈表

〇、目錄 一、反轉鏈表 1、簡單版:反轉全部節點 class Solution { public: ListNode* reverseList(ListNode* head) { ListNode* newhead=NULL; while(head) { ListNode* nex=head->next;
相關文章
相關標籤/搜索