206. Reverse Linked List

Reverse a singly linked list. Example: Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL python: class Solution(object): def reverseList(self, head): """ :type head: ListNode
相关文章
相关标签/搜索