2024/11/12 灵茶题单 二分查找

This commit is contained in:
Cool 2024-11-12 18:52:23 +08:00
parent 06fc23ec9f
commit fcc6fec024
1 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,12 @@ import org.junit.Test;
* @date: 2024/11/12
*/
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或是不存在0则进行分类讨论
**/
public int maximumCount(int[] nums) {
int start = binarySearch(nums, 0);
if (start < nums.length && nums[start] == 0) {