zoukankan      html  css  js  c++  java
  • LeetCode 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

    public class Solution {
        public int searchInsert(int[] A, int target) {
                if (A[0]>=target) {
                    return 0;
                }
            for (int i = 0; i < A.length-1; i++) {
                if (A[i]==target) {
                    return i;
                }
                if (A[i]<target && A[i+1]>target) {
                    return i+1;
                }
            }
            if (A[A.length-1]==target) {
                return A.length-1;
            }
            return A.length;
        }
    }
  • 相关阅读:
    微信小程序
    js
    js
    uni
    uni/微信小程序
    uni/微信小程序
    ES6...扩展运算符(数组或类数组对象)
    微信小程序
    微信小程序
    玩转storm
  • 原文地址:https://www.cnblogs.com/birdhack/p/3986768.html
Copyright © 2011-2022 走看看