当前位置:   article > 正文

Leetcode 143 链表对折

链表对折

思路:

1. 通过快慢指针,一个步长为1, 一个步长为2, 找到链表中点。

2. 前/后 半段链表反转。

3. 与另一半链表归并插入。

  1. class Solution:
  2. def reorderList(self, head):
  3. """
  4. :type head: ListNode
  5. :rtype: void Do not return anything, modify head in-place instead.
  6. """
  7. if head == None or head.next == None:
  8. return
  9. pre = head
  10. lat = head.next
  11. while lat != None and lat.next != None:
  12. pre = pre.next
  13. lat = lat.next.next
  14. p = pre.next
  15. pre.next = None
  16. # reverse
  17. cur = None
  18. while p != None:
  19. q = p.next
  20. p.next = cur
  21. cur = p
  22. p = q
  23. pre = head
  24. while pre != None and cur != None:
  25. tmp = cur.next
  26. cur.next = pre.next
  27. pre.next = cur
  28. pre = pre.next.next
  29. cur = tmp

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/661785
推荐阅读
相关标签
  

闽ICP备14008679号