LeetCode-206 Reverse Linked List
发布时间:2020-12-14 00:36:37 所属栏目:Linux 来源:网络整理
导读:题目描述如下 Reverse a singly linked list. Example: Input: 1-2-3-4-5-NULL Output: 5-4-3-2-1-NULL Follow up: A linked list can be reversed either iteratively or recursively. Could you implement both? 来源:力扣(LeetCode) 链接:https://lee
题目描述如下Reverse a singly linked list. Example: Input: 1->2->3->4->5->NULL A linked list can be reversed either iteratively or recursively. Could you implement both? 来源:力扣(LeetCode) 逆转链表,其实就是先进后出,所以可以用栈实现。当然简单的头插法也可以,这里就不写了。/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x),next(NULL) {} * }; */ class Solution { public: ListNode* reverseList(ListNode* head) { stack<ListNode *> nodeStack; if(head==NULL) return NULL; ListNode * pNode=head; while(pNode!= NULL) { nodeStack.push(pNode); pNode=pNode->next; } ListNode * newHead=NULL; newHead=nodeStack.top(); nodeStack.pop(); ListNode * pre=newHead; while(!nodeStack.empty()) { ListNode * p=nodeStack.top(); nodeStack.pop(); pre->next=p; pre=p; } pre->next=NULL; return newHead; } }; 递归本质也是一个栈结构,所以也可以用递归实现,这里记录一下:/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x),next(NULL) {} * }; */ class Solution { public: ListNode* reverseList(ListNode* head) { ListNode * newHead=NULL; if(head ==NULL) //链表是空的就返回空 return NULL; ListNode * nextNode = head->next; ListNode * res=reverseList(nextNode); if(nextNode ==NULL) return head; nextNode->next = head; head->next=NULL; return res; } }; (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |