91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

[LeetCode]35. Search Insert Position

發布時間:2020-05-20 06:27:23 來源:網絡 閱讀:384 作者:風子余 欄目:編程語言

35. Search Insert Position

Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.

You may assume no duplicates in the array.

Here are few examples.
[1,3,5,6], 5 → 2
[1,3,5,6], 2 → 1
[1,3,5,6], 7 → 4
[1,3,5,6], 0 → 0


程序說明:

如果數組為空,則發揮位置0,若數組中無大于等于的數,則返回數組長度即可。

int searchInsert(int* nums, int numsSize, int target) {
    if ( numsSize == 0 )
    {
        return 0;
    }
    int cnt;
    for ( cnt = 0; cnt < numsSize; cnt++ )
    {
        if ( *(nums + cnt) >= target )
        {
            return cnt;
        }
    }
    return numsSize;
}

由于數組已經是排序的了,故只需逐個開始比較大小,找到相應的位置返回即可

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

湘乡市| 台江县| 调兵山市| 津市市| 广元市| 辰溪县| 华安县| 新巴尔虎右旗| 盘锦市| 宁陕县| 齐河县| 土默特右旗| 句容市| 军事| 桐城市| 津南区| 时尚| 常熟市| 新乡市| 遵义市| 酉阳| 嘉兴市| 缙云县| 新蔡县| 五华县| 遂溪县| 黄冈市| 兖州市| 昌江| 金川县| 南部县| 华蓥市| 鄂伦春自治旗| 六盘水市| 林周县| 台东市| 江孜县| 潍坊市| 通渭县| 淅川县| 红河县|