利用python赋值的特性

反转链表

http://www.nowcoder.com/questionTerminal/75e878df47f24fdc9dc3e400ec6058ca

时间复杂度O(n)

class Solution:
    # 返回ListNode
    def ReverseList(self, pHead):
        # write code here
        if not pHead:
            return None
        root = None
        while pHead:
            pHead.next,root,pHead = root,pHead,pHead.next
        return root
全部评论
可以请教一下,把 pHead.next,root,pHead = root,pHead,pHead.next拆成三行写为什么会报错吗
1 回复 分享
发布于 2020-03-17 23:28
temp = pHead.next pHead.next = root root = pHead pHead = temp 这样就好了
点赞 回复 分享
发布于 2021-03-16 14:50

相关推荐

不愿透露姓名的神秘牛友
11-21 17:16
科大讯飞 算法工程师 28.0k*14.0, 百分之三十是绩效,惯例只发0.9
点赞 评论 收藏
分享
勇敢的联想人前程似锦:如果我是你,身体素质好我会去参军,然后走士兵计划考研211只需要200多分。
点赞 评论 收藏
分享
爱看电影的杨桃allin春招:我感觉你在炫耀
点赞 评论 收藏
分享
65 9 评论
分享
牛客网
牛客企业服务