LeetCode 330. 按要求补齐数组
Posted 数据结构和算法
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 330. 按要求补齐数组相关的知识,希望对你有一定的参考价值。
想看更多算法题,可以扫描上方二维码关注我微信公众号“数据结构和算法”,截止到目前我已经在公众号中更新了500多道算法题,其中部分已经整理成了pdf文档,截止到目前总共有1000多页(并且还会不断的增加),可以在公众号中回复关键字“pdf”即可下载。
public int minPatches(int[] nums, int n) {
//累加的总和
long total = 0;
//需要补充的数字个数
int count = 0;
//访问的数组下标索引
int index = 0;
while (total < n) {
if (index < nums.length && nums[index] <= total + 1) {
//如果数组能组成的数字范围是[1,total],那么加上nums[index]
//就变成了[1,total]U[nums[index],total+nums[index]]
//结果就是[1,total+nums[index]]
total += nums[index++];
} else {
//添加一个新数字,并且count加1
total = total + (total + 1);
count++;
}
}
return count;
}
public int minPatches(int[] nums, int n) {
//累加的总和
long total = 1;
//需要补充的数字个数
int count = 0;
//访问的数组下标索引
int index = 0;
while (total <= n) {
if (index < nums.length && nums[index] <= total) {
//如果数组能组成的数字范围是[1,total),那么加上nums[index]
//就变成了[1,total)U[nums[index],total+nums[index])
//结果就是[1,total+nums[index])
total += nums[index++];
} else {
//添加一个新数字,并且count加1
total <<= 1;
count++;
}
}
return count;
}
以上是关于LeetCode 330. 按要求补齐数组的主要内容,如果未能解决你的问题,请参考以下文章
数据结构与算法之深入解析“按要求补齐数组”的求解思路与算法示例
2021-08-11:按要求补齐数组。给定一个已排序的正整数数组 nums,和一个正整数 n 。从 [1, n] 区间内选取任意个数字补充到 nums 中,使得 [1, n] 区间内的任何数字都可以用
LeetCode810. 黑板异或游戏/455. 分发饼干/剑指Offer 53 - I. 在排序数组中查找数字 I/53 - II. 0~n-1中缺失的数字/54. 二叉搜索树的第k大节点(代码片段