剑指 Offer 53 - II. 0~n-1中缺失的数字
Posted 小布丁value
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指 Offer 53 - II. 0~n-1中缺失的数字相关的知识,希望对你有一定的参考价值。
class Solution {
public int missingNumber(int[] nums) {
int i = 0, j = nums.length - 1;
while(i <= j) {
int m = (i + j) / 2;
if(nums[m] == m) i = m + 1;
else j = m - 1;
}
return i;
}
}
以上是关于剑指 Offer 53 - II. 0~n-1中缺失的数字的主要内容,如果未能解决你的问题,请参考以下文章
剑指Offer面试题53 - II. 0~n-1中缺失的数字