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
相關文章
相關標籤/搜索