您当前的位置: 首页 >  liyatjj leetcode

LeetCode数组异或操作

liyatjj 发布时间:2022-05-02 08:55:27 ,浏览量:4

数组异或操作 给你两个整数,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 运算符。

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/xor-operation-in-an-array

思路比较简单,就是遍历数组,对其进行异或操作。

class Solution {
    public int xorOperation(int n, int start) {

        int num=0;
        for(int i=0;i            
关注
打赏
1688896170
查看更多评论
0.1375s