题目
给你两个整数,n 和 start 。
数组 nums 定义为:nums[i] = start + 2*i(下标从 0 开始)且 n == nums.length 。
请返回 nums 中所有元素按位异或(XOR)后得到的结果。
示例 1:
输入:n = 5, start = 0
输出:8
解释:数组 nums 为 [0, 2, 4, 6, 8],其中 (0 ^ 2 ^ 4 ^ 6 ^ 8) = 8 。
"^" 为按位异或 XOR 运算符。
示例 2:
输入:n = 4, start = 3 输出:8 解释:数组 nums 为 [3, 5, 7, 9],其中 (3 ^ 5 ^ 7 ^ 9) = 8.
示例 3:
输入:n = 1, start = 7 输出:7
提示:
1 <= n <= 1000
0 <= start <= 1000
n == nums.length
解题
方法一、巧用中间变量
分析:避免顺着题目思路去使用数组或向量,利用一个中间变量保存每次异或的值即可。
代码:(C++)
class Solution {
public:
int xorOperation(int n, int start) {
int res = 0;
for (int i = 0; i < n; i ++) {
res ^= start + 2*i;
}
return res;
}
};
作者:liu-zhen-w
链接:https:///problems/xor-operation-in-an-array/solution/ji-jian-shuang-bai-by-liu-zhen-w/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
执行结果: