LeetCode- 搜索插入位置

给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。

你可以假设数组中无重复元素。

示例 1:

输入: [1,3,5,6], 5
输出: 2
示例 2:

输入: [1,3,5,6], 2
输出: 1

class Solution:
    def searchInsert(self, nums, target):
        """
        :type nums: List[int]
        :type target: int
        :rtype: int
        """
        if target in nums:
            return nums.index(target)

        for ele in nums:
            if target < ele:
                index = nums.index(ele)
                break
        else:
            index = len(nums)
        return index

若目标值在数组中,用list.index()方法返回其索引
若目标不在数组中,数组是自然排序,所以查询列表中比目标值大的第一个数,该数的索引就是目标值的插入索引.
若数组中没有找到比目标值大的元素,for循环顺序执行完毕,执行else,目标值的索引应该在数组最后.index = len(nums)

你可能感兴趣的:(python,leetcode)