代码拉取完成,页面将自动刷新
// Time: O(logn)
// Space: O(1)
// Iterative solution.
class Solution {
public:
int integerReplacement(int n) {
if (n == 2147483647) {
return 2 + integerReplacement(n / 2 + 1);
}
int result = 0;
while (n != 1) {
const auto b = n & 3;
if (n == 3) {
--n;
} else if (b == 3) {
++n;
} else if (b == 1) {
--n;
} else {
n /= 2;
}
++result;
}
return result;
}
};
// Time: O(logn)
// Space: O(logn)
// Recursive solution
class Solution2 {
public:
int integerReplacement(int n) {
if (n == 2147483647) {
return 2 + integerReplacement(n / 2 + 1);
}
if (n < 4) {
switch (n % 4) {
case 0: case 1: return 0;
case 2: return 1;
case 3: return 2;
}
}
switch (n % 4) {
case 0: case 2: return integerReplacement(n / 2) + 1;
case 1: return integerReplacement((n - 1) / 4) + 3;
case 3: return integerReplacement((n + 1) / 4) + 3;
}
return 0;
}
};
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。