2024/11/12 灵茶题单 二分查找
This commit is contained in:
parent
fcc6fec024
commit
51b47be6aa
|
@ -10,7 +10,8 @@ public class Num2529 {
|
|||
/**
|
||||
* @Author Cool
|
||||
* @Date 18:50 2024/11/12
|
||||
* 找到第一个0,若存在则找最后一个0的位置,类似于<a herf="https://leetcode.cn/problems/find-first-and-last-position-of-element-in-sorted-array/description/"/>
|
||||
* 找到第一个0,若存在则找最后一个0的位置,类似于
|
||||
* <a href="https://leetcode.cn/problems/find-first-and-last-position-of-element-in-sorted-array/description/">34. 在排序数组中查找元素的第一个和最后一个位置</a>
|
||||
* 若找不到0,则可能是数组内所有数字都小于0,或是不存在0,则进行分类讨论
|
||||
**/
|
||||
public int maximumCount(int[] nums) {
|
||||
|
|
Loading…
Reference in New Issue