1486. 数组异或操作

1486. 数组异或操作

给你两个整数,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

方法一:模拟
思路

按照题意模拟即可:

初始化 ans=0
遍历区间 [0,n−1] 中的每一个整数 i,令ans 与每一个 做异或运算
最终返回ans,即我们需要的答案

class Solution {
public:
    int xorOperation(int n, int start) {
        int ans = 0;
        for (int i = 0; i < n; ++i) {
            ans ^= (start + i * 2);
        }
        return ans;
    }
};

 

posted @ 2020-08-22 12:06  多发Paper哈  阅读(120)  评论(0编辑  收藏  举报
Live2D