我是靠谱客的博主 虚心路人,最近开发中收集的这篇文章主要介绍case04:找出数组中唯一一个成对的数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

package com.atzhanyuan.java;

import java.util.Random;

/**
 *
 * 找出数组中唯一一个成对的数
 *
 * @author hylstart
 * @create 2021-12-31 13:29
 */
public class case01 {
    public static void main(String[] args) {
        int N = 11;
        int[] arr = new int[N];

        for (int i = 0; i < N -1; i++){
            arr[i] = i + 1;
        }

        //生成随机数
        arr[arr.length - 1] = new Random().nextInt(N - 1) + 1;//生成1-10间的随机数
        //生成随机下标
        int index = new Random().nextInt(N);//生成0 - 10
        //交换生成的随机数
        int temp = arr[arr.length - 1];
        arr[arr.length - 1] = arr[index];
        arr[index] = temp;

        for (int i = 0; i < arr.length ; i++) {
            System.out.print(arr[i] + " ");
        }

        //开始对数组进行异或操作
        int x = 0;
        for (int i = 0; i < arr.length ; i++) {
            x = x^arr[i];
        }
        for (int i = 1; i < N; i++) {
            x = (x^i);//一定要加括号
        }

        System.out.println();

        System.out.println(x);

    }
}

最后

以上就是虚心路人为你收集整理的case04:找出数组中唯一一个成对的数的全部内容,希望文章能够帮你解决case04:找出数组中唯一一个成对的数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(99)

评论列表共有 0 条评论

立即
投稿
返回
顶部