思路:
求逆格雷码。
实现:
1 class Solution 2 { 3 public: 4 int minimumOneBitOperations(int n) 5 { 6 int res = 0; 7 while (n) 8 { 9 res ^= n; 10 n >>= 1; 11 } 12 return res; 13 } 14 };
思路:
求逆格雷码。
实现:
1 class Solution 2 { 3 public: 4 int minimumOneBitOperations(int n) 5 { 6 int res = 0; 7 while (n) 8 { 9 res ^= n; 10 n >>= 1; 11 } 12 return res; 13 } 14 };
1827. 最少操作使数组递增
【LeetCode】2009. 使数组连续的最少操作数
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M