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

leetcode——206. 反转链表

时间:2019-10-24 22:02:57      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:linked   for   link   nod   一个   das   span   ret   用户   

头依次拔下来,按顺序插进另一个链表:

# Definition for singly-linked list.
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None

class Solution:
    def reverseList(self, head: ListNode) -> ListNode:
        new_head=None
        while head:
            tmp=head.next
            head.next=new_head
            new_head=head
            head=tmp
        return new_head
执行用时 :44 ms, 在所有 python3 提交中击败了93.17%的用户
内存消耗 :14.9 MB, 在所有 python3 提交中击败了19.62%的用户
技术图片
 
 
 
 
——2019.10.24
 
 

leetcode——206. 反转链表

标签:linked   for   link   nod   一个   das   span   ret   用户   

原文地址:https://www.cnblogs.com/taoyuxin/p/11734802.html

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