[LeetCode] 708. Insert into a Cyclic Sorted List
2360 단어 linkedlist자바
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.
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.
Solution
/*
// Definition for a Node.
class Node {
public int val;
public Node next;
public Node() {}
public Node(int _val,Node _next) {
val = _val;
next = _next;
}
};
*/
class Solution {
public Node insert(Node head, int insertVal) {
if (head == null) {
head = new Node();
head.val = insertVal;
head.next = head;
return head;
}
Node next = head.next, pre = head;
while (next != head) {
//insert in flat or rising range
if (pre.val == insertVal || (pre.val < insertVal && insertVal < next.val)) {
Node cur = new Node(insertVal, next);
pre.next = cur;
return head;
}
//insert in peak and falling range
if (pre.val > next.val && (insertVal < next.val || insertVal > pre.val)) {
Node cur = new Node(insertVal, next);
pre.next = cur;
return head;
}
pre = next;
next = next.next;
}
//insert before head
Node cur = new Node(insertVal, next);
pre.next = cur;
return head;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
LinkedList Java 제네릭을 사용하여 가장 중요한 메서드를 구현합니다.이 게시물에서는 LinkedList 데이터 구조를 간략하게 설명하고 Java 프로그래밍 언어를 사용하여 가장 중요한 메서드를 구현하려고 합니다. 따라서 메모리에서 작동하는 방식과 기본 메서드를 구현하는 방식을 알 수...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.