708. Insert into a Sorted Circular Linked List

Given a node from a Circular Linked List which is sorted in ascending order, write a function to insert a value insertVal into the list such that it remains a sorted circular 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 circular list.

If there are multiple suitable places for insertion, you may choose any place to insert the new value. After the insertion, the circular list should remain sorted.

If the list is empty (i.e., given node is null), you should create a new single circular 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]
 1 /*
 2 // Definition for a Node.
 3 class Node {
 4     public int val;
 5     public Node next;
 6 
 7     public Node() {}
 8 
 9     public Node(int _val) {
10         val = _val;
11     }
12 
13     public Node(int _val, Node _next) {
14         val = _val;
15         next = _next;
16     }
17 };
18 */
19 // There are three cases where we can insert the new node:
20 
21 // In cycle case: curNode<=insertVal<=curNode.next
22 // Boundry case: curNode>curNode.next && ( insertVal>=curNode || insertVal<=curNode.next )
23 // All the node val in the loop are equal.
24 class Solution {
25     // 1. pre<node<next || 2. pre>next && node>pre
26     public Node insert(Node head, int insertVal) {
27         if(head==null) {
28             head = new Node(insertVal);
29             head.next = head;
30         }else {
31             Node curNode = head;   
32             while(!(insertVal<=curNode.next.val && insertVal>=curNode.val) && 
// case 1: insert 5 into 4->1. case 2: insert 2 into 5 -> 3
33                   !(curNode.val>curNode.next.val && (insertVal>=curNode.val||insertVal<=curNode.next.val)) && 
34                   curNode.next!=head) {
35                 curNode = curNode.next;
36             }
37             Node tmp = curNode.next;
38             curNode.next = new Node(insertVal);
39             curNode.next.next = tmp;
40         }
41         return head;
42     }
43 }
posted @ 2021-03-15 11:17  北叶青藤  阅读(49)  评论(0编辑  收藏  举报