zoukankan      html  css  js  c++  java
  • 刷题-力扣-1486. 数组异或操作

    1486. 数组异或操作

    题目链接

    来源:力扣(LeetCode)
    链接:https://leetcode-cn.com/problems/xor-operation-in-an-array/
    著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

    题目描述

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

    示例 4:

    输入:n = 10, start = 5
    输出:2
    

    提示:

    • 1 <= n <= 1000
    • 0 <= start <= 1000
    • n == nums.length

    题目分析

    1. 根据题目描述计算从start开始的连续的n个数的异或

    代码

    class Solution {
    public:
        int xorOperation(int n, int start) {
            int res = 0;
            for (int i = 0; i < n; ++i) {
                res = res ^ (start + 2 * i);
            }
            return res;
        }
    };
    
  • 相关阅读:
    内部类
    抽象类与接口
    多态
    继承
    封装
    创建对象的内存分析
    构造器
    面向对象 类与对象
    uniapp跳转
    uniapp-组件引用错误,仅支持 import 方式引入组件
  • 原文地址:https://www.cnblogs.com/HanYG/p/14738784.html
Copyright © 2011-2022 走看看