LeetCode #708. Insert into a Cyclic Sorted List

本文介绍了一种在已排序的循环链表中插入新值的算法,确保链表保持有序状态。算法首先查找链表的最大和最小值,然后根据新值的位置进行插入。若链表为空,则创建新的单节点循环链表。

题目描述:

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.

class Solution {
public:
    Node* insert(Node* head, int insertVal) {
        if(head==NULL)
        {
            Node* node=new Node(insertVal);
            node->next=node;
            return node;
        }
        // 需要找到链表中的最大值和最小值,从而确定插入的位置
        int max_val=INT_MIN;
        int min_val=INT_MAX;
        Node* p=head->next;
        while(true)
        {
            max_val=max(max_val,p->val);
            min_val=min(min_val,p->val);
            if(p==head) break;
            p=p->next;
        }
        
        Node* cur=head;
        Node* next=cur->next;
        if(insertVal>=max_val||insertVal<=min_val)
        {
            while(true)
            {
                if(cur->val==max_val&&next->val==min_val)
                {
                    Node* node=new Node(insertVal);
                    cur->next=node;
                    node->next=next;
                    break;
                }
                cur=next;
                next=next->next;
            }
        }
        else
        {
            while(true)
            {
                if(cur->val<=insertVal&&next->val>=insertVal)
                {
                    Node* node=new Node(insertVal);
                    cur->next=node;
                    node->next=next;
                    break;
                }
                cur=next;
                next=next->next;
            }
        }
        return head;
    }
};

 

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值