708 Insert into a Cyclic Sorted List
Last updated
Last updated
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 isnull
), you should create a new single cyclic list and return the reference to that single node. Otherwise, you should return the original given node.
The following example may help you understand the problem better:
In the figure above, there is a cyclic sorted 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 insert between node 1 and node 3. After the insertion, the list should look like this, and we should still return node 3.
这题的边界条件真是让人痛心疾首。 主要是怎么判断我们已经找了一圈,这里我用的是判断next是否已经又指向head了。然后另外一个难点是判断插入地方,第一个条件容易找,在两数之间插。第二个条件是,比所有数大/小,这个要插在list头尾相接的地方。最后还有一种情况是list里全部数字都一样。这样的话,我们走一圈,插在最后head前。