zoukankan      html  css  js  c++  java
  • 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
        }
    }
  • 相关阅读:
    Ubuntu下配置PHP和CakePHP记录
    VMware Workstation “以独占方式锁定此配置文件失败。可能其它正在运行VMware进程在使用此配置文件”
    c语言结构体链表
    Linux下VNC配置使用总结:开启+桌面配置+安全访问
    git服务器使用
    MYSQL外键(Foreign Key)的使用
    MySQL 安装与使用(三)
    Percona XtraBackup的部分备份与恢复/单库备份/单表备份/指定库备份/指定表备份
    Percona XtraBackup 核心文档
    mysql 半同步复制 插件安装以及测试
  • 原文地址:https://www.cnblogs.com/johnnyzhao/p/13633049.html
Copyright © 2011-2022 走看看