赞
踩
反转一个单链表。
示例:
输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
解答:
方法一:使用3个指针遍历单链表,逐个链接点进行反转。
# 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 """ if head == None: return None p = head q = head.next head
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。