708. Insert into a Cyclic Sorted List
package LeetCode_708 /** * 708. Insert into a Cyclic Sorted List * (Prime) * Given a node from a cyclic linked list which is sorted in ascending order, * write a function to insert a value into the list such that it remains a cyclic sorted list. * The given node can be a reference to any single node in the list,and may not be necessarily the smallest value in the cyclic list. If there are multiple suitable places for insertion, you may choose any place to insert the new value. After the insertion, the cyclic list should remain sorted. If the list is empty (i.e., given node is null), you should create a new single cyclic list and return the reference to that single node. Otherwise, you should return the original given node. Example 1: Input: head = [3,4,1], insertVal = 2 Output: [3,4,1,2] Explanation: In the figure above, there is a sorted circular list of three elements. You are given a reference to the node with value 3, and we need to insert 2 into the list. The new node should be inserted between node 1 and node 3. After the insertion, the list should look like this, and we should still return node 3. Example 2: Input: head = [], insertVal = 1 Output: [1] Explanation: The list is empty (given head is null). We create a new single circular list and return the reference to that single node. Example 3: Input: head = [1], insertVal = 0 Output: [1,0] Constraints: 1. 0 <= Number of Nodes <= 5 * 10^4 2. -10^6 <= Node.val <= 10^6 3. -10^6 <= insertVal <= 10^6 * */ class ListNode(var `val`: Int, next_: ListNode?) { var next: ListNode? = null init { this.next = next_ } } class Solution { /* * solution: handle 3 situations * */ fun insert(head: ListNode?, insertVal: Int): ListNode? { val newNode = ListNode(insertVal, null) if (head == null) { newNode.next = newNode return newNode } var prev = head var next = head.next while (next != head) { //insert into flat or rising range if (prev?.`val` == insertVal || (prev?.`val`!! < insertVal && insertVal < next!!.`val`)) { val cur = ListNode(insertVal, next) prev.next = cur return head } //insert into peak or falling range if (prev.`val` > next!!.`val` && (insertVal < next.`val` || insertVal > prev.`val`)) { val cur = ListNode(insertVal, next) prev.next = cur return head } prev = next next = next.next } //insert before head val cur = ListNode(insertVal, next) prev?.next = cur return head } }
标签:
LinkedList
, leetcode
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· .NET10 - 预览版1新功能体验(一)
2019-09-08 905. Sort Array By Parity