golang力扣leetcode 86.分隔链表

简介: golang力扣leetcode 86.分隔链表

题解

思路:将大于 x 的节点,放到另外一个链表,最后连接这两个链表

代码

package main
type ListNode struct {
  Val  int
  Next *ListNode
}
func partition(head *ListNode, x int) *ListNode {
  if head == nil {
    return nil
  }
  headDummy := &ListNode{0, head}
  tailDummy := &ListNode{}
  head = headDummy
  tail := tailDummy
  for head.Next != nil {
    if head.Next.Val < x {
      head = head.Next
    } else {
      cnt := head.Next
      head.Next = head.Next.Next
      tail.Next = cnt
      tail = tail.Next
    }
  }
  tail.Next = nil
  head.Next = tailDummy.Next
  return headDummy.Next
}
func main() {
}
目录
相关文章
|
2月前
【力扣】-- 移除链表元素
【力扣】-- 移除链表元素
37 1
|
2月前
|
程序员 C语言
【C语言】LeetCode(力扣)上经典题目
【C语言】LeetCode(力扣)上经典题目
|
2月前
|
索引
力扣(LeetCode)数据结构练习题(3)------链表
力扣(LeetCode)数据结构练习题(3)------链表
95 0
|
2月前
力扣(LeetCode)数据结构练习题(2)
力扣(LeetCode)数据结构练习题(2)
31 0
|
7月前
【移除链表元素】LeetCode第203题讲解
【移除链表元素】LeetCode第203题讲解
|
6月前
|
存储 SQL 算法
LeetCode力扣第114题:多种算法实现 将二叉树展开为链表
LeetCode力扣第114题:多种算法实现 将二叉树展开为链表
|
6月前
|
存储 SQL 算法
LeetCode 题目 86:分隔链表
LeetCode 题目 86:分隔链表
|
6月前
|
存储 算法 Java
【经典算法】Leetcode 141. 环形链表(Java/C/Python3实现含注释说明,Easy)
【经典算法】Leetcode 141. 环形链表(Java/C/Python3实现含注释说明,Easy)
65 2
|
7月前
<数据结构>五道LeetCode链表题分析.环形链表,反转链表,合并链表,找中间节点.
<数据结构>五道LeetCode链表题分析.环形链表,反转链表,合并链表,找中间节点
61 1
|
6月前
|
算法
【经典LeetCode算法题目专栏分类】【第7期】快慢指针与链表
【经典LeetCode算法题目专栏分类】【第7期】快慢指针与链表