欢迎关注我的 力扣github仓库,有JavaScript和C++两个版本,每日更新
写在前面: 水题鸭,链表的头插法,以后代码要多注释
C++:
/**
* 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 *L=new ListNode,*temp;
while(head){
temp=head->next;
head->next=L->next;
L->next=head;
head=temp;
}
return L->next;
}
};
JS:
/**
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
/**
* @param {ListNode} head
* @return {ListNode}
*/
var reverseList = function(head) {
var L=new ListNode; //建新表来存放返回结果
var temp=null;
while(head)
{
temp=head.next; //temp用于保存head的下一个指向,因为后面操作会让它丢失
head.next=L.next;
L.next=head;
head=temp; //把next的下一个节点接回来
}
return L.next;
};
206. 反转链表
反转一个单链表。
示例:
输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
进阶:
你可以迭代或递归地反转链表。你能否用两种方法解决这道题?
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/reverse-linked-list
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。