Skip to content

Latest commit

 

History

History
39 lines (29 loc) · 588 Bytes

203.md

File metadata and controls

39 lines (29 loc) · 588 Bytes

Reverse Linked List

Description

link


Solution

See Code


Code

O(n)

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

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