码迷,mamicode.com
首页 > 其他好文 > 详细

链表练习

时间:2020-01-20 12:54:50      阅读:53      评论:0      收藏:0      [点我收藏+]

标签:leetcode   public   solution   练习   示例   ini   head   ble   https   

206. 反转链表

反转一个单链表。

示例:

输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
/**
 * 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 *new_head = NULL;
        while(head)
        {
            ListNode *next = head->next;
            head->next = new_head;
            new_head=head;
            head=next;
        }
        return new_head;
        
    }
};

链表练习

标签:leetcode   public   solution   练习   示例   ini   head   ble   https   

原文地址:https://www.cnblogs.com/KID-XiaoYuan/p/12217352.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!