当前位置: 首页 > article >正文

53 - I. 在排序数组中查找数字 I


comments: true
edit_url: https://github.com/doocs/leetcode/edit/main/lcof/%E9%9D%A2%E8%AF%95%E9%A2%9853%20-%20I.%20%E5%9C%A8%E6%8E%92%E5%BA%8F%E6%95%B0%E7%BB%84%E4%B8%AD%E6%9F%A5%E6%89%BE%E6%95%B0%E5%AD%97%20I/README.md

面试题 53 - I. 在排序数组中查找数字 I

题目描述

统计一个数字在排序数组中出现的次数。

示例 1:

输入: nums = [5,7,7,8,8,10], target = 8
输出: 2

示例 2:

输入: nums = [5,7,7,8,8,10], target = 6
输出: 0

提示:

  • 0 <= nums.length <= 105
  • -109 <= nums[i] <= 109
  • nums 是一个非递减数组
  • -109 <= target <= 109

注意:本题与主站 34 题相同(仅返回值不同):https://leetcode.cn/problems/find-first-and-last-position-of-element-in-sorted-array/

解法

方法一:二分查找

由于数组 nums 已排好序,我们可以使用二分查找的方法找到数组中第一个大于等于 target 的元素的下标 l l l,以及第一个大于 target 的元素的下标 r r r,那么 target 的个数就是 r − l r - l rl

时间复杂度 O ( log ⁡ n ) O(\log n) O(logn),其中 n n n 为数组的长度。空间复杂度 O ( 1 ) O(1) O(1)

【二分查找 红蓝染色法】 https://www.bilibili.com/video/BV1AP41137w7/?share_source=copy_web&vd_source=ed4a51d52f6e5c9a2cb7def6fa64ad6a
在这里插入图片描述

Python3
class Solution:
    def search(self, nums: List[int], target: int) -> int:
        #l = bisect_left(nums, target)
        #r = bisect_right(nums, target)
        def bi_sect(nums,target):
            l,r=0,len(nums)-1
            while l<=r:
                mid=(l+r)//2
                if nums[mid]>=target:
                    r=mid-1
                else:
                    l=mid+1
            return l
            
        l=bi_sect(nums,k)
        r=bi_sect(nums,k+1)
        return r-l
Java
class Solution {
    private int[] nums;

    public int search(int[] nums, int target) {
        this.nums = nums;
        int l = search(target);
        int r = search(target + 1);
        return r - l;
    }

    private int search(int x) {
        int l = 0, r = nums.length;
        while (l < r) {
            int mid = (l + r) >>> 1;
            if (nums[mid] >= x) {
                r = mid;
            } else {
                l = mid + 1;
            }
        }
        return l;
    }
}
C++
class Solution {
public:
    int search(vector<int>& nums, int target) {
        auto l = lower_bound(nums.begin(), nums.end(), target);
        auto r = upper_bound(nums.begin(), nums.end(), target);
        return r - l;
    }
};
Go
func search(nums []int, target int) int {
	l := sort.SearchInts(nums, target)
	r := sort.SearchInts(nums, target+1)
	return r - l
}
Rust
impl Solution {
    pub fn search(nums: Vec<i32>, target: i32) -> i32 {
        let search = |x| {
            let mut l = 0;
            let mut r = nums.len();
            while l < r {
                let mid = l + (r - l) / 2;
                if nums[mid] >= x {
                    r = mid;
                } else {
                    l = mid + 1;
                }
            }
            l as i32
        };
        search(target + 1) - search(target)
    }
}
JavaScript
/**
 * @param {number[]} nums
 * @param {number} target
 * @return {number}
 */
var search = function (nums, target) {
    const search = x => {
        let l = 0;
        let r = nums.length;
        while (l < r) {
            const mid = (l + r) >> 1;
            if (nums[mid] >= x) {
                r = mid;
            } else {
                l = mid + 1;
            }
        }
        return l;
    };
    const l = search(target);
    const r = search(target + 1);
    return r - l;
};
C#
public class Solution {
    public int Search(int[] nums, int target) {
        int l = search(nums, target);
        int r = search(nums, target + 1);
        return r - l;
    }

    private int search(int[] nums, int x) {
        int l = 0, r = nums.Length;
        while (l < r) {
            int mid = (l + r) >> 1;
            if (nums[mid] >= x) {
                r = mid;
            } else {
                l = mid + 1;
            }
        }
        return l;
    }
}
Swift
class Solution {
    private var nums: [Int] = []

    func search(_ nums: [Int], _ target: Int) -> Int {
        self.nums = nums
        let leftIndex = search(target)
        let rightIndex = search(target + 1)
        return rightIndex - leftIndex
    }

    private func search(_ x: Int) -> Int {
        var left = 0
        var right = nums.count
        while left < right {
            let mid = (left + right) / 2
            if nums[mid] >= x {
                right = mid
            } else {
                left = mid + 1
            }
        }
        return left
    }
}

http://www.kler.cn/a/300729.html

相关文章:

  • 快手极速版如何查找ip归属地?怎么关掉
  • MyBatisPlus学习笔记
  • PTA L1-039 古风排版
  • ZooKeeper 核心知识全解析:架构、角色、节点与应用
  • C语言的语法糖
  • 解锁C#语法的无限可能:从基础到进阶的编程之旅
  • Trinamic医疗成功的事例之TMCM611
  • QSoundEffect 用于播放一些单调简单的声音
  • Python画笔案例-045 绘制渐变圆盘
  • 国产视频转换HDMI1.4转单/双MIPI DSI/CSI LT6911C芯片方案,带音频输出,QFN64封装 Lontium
  • JDBC连接数据库
  • git版本问题Your branch is behind ‘origin/dev‘by 2 commits,
  • C语言中的磁盘映射与共享内存详解
  • C++设计模式——State状态模式
  • 基于开源链动 2 + 1 模式、AI 智能名片与 S2B2C 商城小程序的用户忠诚度计划
  • C# UDP与TCP点发【速发速断】模式
  • HTML5中`<area>`标签深入全面解析
  • 学习笔记|《白话机器学习的数学》
  • OpenCV结构分析与形状描述符(19)查找二维点集的最小面积外接旋转矩形函数minAreaRect()的使用
  • C++中的for-each循环
  • 单例模式解析
  • 基于高通主板的ARM架构服务器
  • 深入理解Java虚拟机:Jvm总结-虚拟机字节码执行引擎
  • 面试常见题之java
  • 甘特图组件DHTMLX Gantt中文教程 - 如何实现持久UI状态
  • Redis的存储原理和数据模型