LeetCode 206. Reverse Linked List倒置链表 C++

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?

解法一:(C++)
利用迭代的方法依次将链表元素放在新链表的最前端实现链表的倒置
 1 class Solution {
 2 public:
 3     ListNode* reverseList(ListNode* head) {
 4         ListNode* newhead=NULL;
 5         while(head){
 6             ListNode* t=head->next;
 7             head->next=newhead;
 8             newhead=head;
 9             head=t;
10         }
11         return newhead;
12     }
13 };

解法二(C++)

并不是多么正统的方法,借助vector的先进后出的方法实现倒置

 1 class Solution {
 2 public:
 3     ListNode* reverseList(ListNode* head) {
 4         if(!head||!head->next)
 5             return head;
 6         vector<int> m;
 7         while(head){
 8             m.push_back(head->val);
 9             head=head->next;
10         }
11         ListNode* newhead=new ListNode(-1);
12         ListNode* t=newhead;
13         while(!m.empty()){
14             ListNode* cur=new ListNode(m.back());
15             m.pop_back();
16             t->next=cur;
17             t=cur;
18         }
19         return newhead->next;
20     }
21 };

 

posted on 2019-03-22 11:50  木落长安rr 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/hhhhan1025/p/10577350.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值