golang力扣leetcode 143.重排链表

简介: golang力扣leetcode 143.重排链表

题解

  1. 找到中点断开,翻转后面部分,然后合并前后两个链表
  2. 重建该链表

两种实现方式

代码

package main
type ListNode struct {
  Val  int
  Next *ListNode
}
//找到中点断开,翻转后面部分,然后合并前后两个链表
func reorderList1(head *ListNode) {
  if head == nil {
    return
  }
  mid := findMiddle(head)
  tail := mid.Next
  mid.Next = nil
  tail = reverseList(tail)
  mergeTwoLists(head, tail)
}
//快慢指针找中点
func findMiddle(head *ListNode) *ListNode {
  slow := head
  fast := head.Next
  for fast != nil && fast.Next != nil {
    slow = slow.Next
    fast = fast.Next.Next
  }
  return slow
}
//翻转链表
func reverseList(head *ListNode) *ListNode {
  curr := head
  var p *ListNode
  for curr != nil {
    next := curr.Next
    curr.Next = p
    p = curr
    curr = next
  }
  return p
}
//l1链表插一个,l2链表插1个,依次添加
func mergeTwoLists(l1 *ListNode, l2 *ListNode) *ListNode {
  dummy := &ListNode{}
  head := dummy
  var f bool = true
  for l1 != nil && l2 != nil {
    if f {
      head.Next = l1
      l1 = l1.Next
    } else {
      head.Next = l2
      l2 = l2.Next
    }
    f = !f
    head = head.Next
  }
  if l1 != nil {
    head.Next = l1
    l1 = l1.Next
    head = head.Next
  } else if l2 != nil {
    head.Next = l2
    l2 = l2.Next
    head = head.Next
  }
  return dummy.Next
}
//重建该链表
func reorderList2(head *ListNode) {
  if head == nil {
    return
  }
  var nodes []*ListNode
  for node := head; node != nil; node = node.Next {
    nodes = append(nodes, node)
  }
  i, j := 0, len(nodes)-1
  for i < j {
    nodes[i].Next = nodes[j]
    i++
    if i == j {
      break
    }
    nodes[j].Next = nodes[i]
    j--
  }
  nodes[i].Next = nil
}
func main() {
  reorderList1(nil)
  reorderList2(nil)
}
目录
相关文章
|
20天前
【力扣】-- 移除链表元素
【力扣】-- 移除链表元素
31 1
|
24天前
|
程序员 C语言
【C语言】LeetCode(力扣)上经典题目
【C语言】LeetCode(力扣)上经典题目
|
29天前
|
算法
【链表】算法题(二) ----- 力扣/牛客
【链表】算法题(二) ----- 力扣/牛客
|
27天前
|
索引
力扣(LeetCode)数据结构练习题(3)------链表
力扣(LeetCode)数据结构练习题(3)------链表
71 0
|
27天前
力扣(LeetCode)数据结构练习题(2)
力扣(LeetCode)数据结构练习题(2)
28 0
|
27天前
|
存储
力扣(LeetCode)数据结构练习题
力扣(LeetCode)数据结构练习题
49 0
|
2月前
|
Unix Shell Linux
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
本文提供了几个Linux shell脚本编程问题的解决方案,包括转置文件内容、统计词频、验证有效电话号码和提取文件的第十行,每个问题都给出了至少一种实现方法。
LeetCode刷题 Shell编程四则 | 194. 转置文件 192. 统计词频 193. 有效电话号码 195. 第十行
|
3月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
54 6
|
3月前
|
搜索推荐 索引 Python
【Leetcode刷题Python】牛客. 数组中未出现的最小正整数
本文介绍了牛客网题目"数组中未出现的最小正整数"的解法,提供了一种满足O(n)时间复杂度和O(1)空间复杂度要求的原地排序算法,并给出了Python实现代码。
106 2
|
6天前
|
机器学习/深度学习 人工智能 自然语言处理
280页PDF,全方位评估OpenAI o1,Leetcode刷题准确率竟这么高
【10月更文挑战第24天】近年来,OpenAI的o1模型在大型语言模型(LLMs)中脱颖而出,展现出卓越的推理能力和知识整合能力。基于Transformer架构,o1模型采用了链式思维和强化学习等先进技术,显著提升了其在编程竞赛、医学影像报告生成、数学问题解决、自然语言推理和芯片设计等领域的表现。本文将全面评估o1模型的性能及其对AI研究和应用的潜在影响。
8 1