亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

[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

马山县| 青龙| 青铜峡市| 东辽县| 巍山| 平武县| 内黄县| 惠东县| 台安县| 永仁县| 松溪县| 南华县| 万安县| 怀化市| 山西省| 阜阳市| 泸定县| 冕宁县| 广元市| 安宁市| 台湾省| 江都市| 龙泉市| 湖口县| 鄱阳县| 溆浦县| 雷州市| 南乐县| 海伦市| 金塔县| 奇台县| 福贡县| 临湘市| 中牟县| 石柱| 武冈市| 辽阳市| 福泉市| 紫阳县| 新野县| 兰州市|