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

剑指offer——反转链表

时间:2018-08-23 14:16:42      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:lis   sel   code   bottom   node   reverse   ==   utf-8   turn   

题目描述

输入一个链表,反转链表后,输出新链表的表头。
# -*- coding:utf-8 -*-
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None
class Solution:
    # 返回ListNode
    def ReverseList(self, pHead):
        # write code here
        if pHead==None:
            return None
        a=pHead
        b=pHead.next
        a.next=None
        while b :
            c=b.next
            b.next=a
            a=b
            b=c
        return a
            

 

剑指offer——反转链表

标签:lis   sel   code   bottom   node   reverse   ==   utf-8   turn   

原文地址:https://www.cnblogs.com/hit-joseph/p/9523224.html

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