【Python】【难度:简单】Leetcode 面试题24. 反转链表

定义一个函数,输入一个链表的头节点,反转该链表并输出反转后链表的头节点。

示例:

输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
 

限制:

0 <= 节点个数 <= 5000

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/fan-zhuan-lian-biao-lcof
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

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

class Solution(object):
    def reverseList(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        pre=None
        cur=head
        while cur:
            tmp=cur.next
            cur.next=pre
            pre=cur
            cur=tmp
        return pre

执行结果:

通过

显示详情

执行用时 :32 ms, 在所有 Python 提交中击败了33.77%的用户

内存消耗 :14.9 MB, 在所有 Python 提交中击败了100.00%的用户

原创文章 105 获赞 0 访问量 1662

猜你喜欢

转载自blog.csdn.net/thomashhs12/article/details/106062816