欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

一个整型数组里除了两个数字之外,其他的数字都出现了两次。请写程序找出这两个只出现一次的数字

程序员文章站 2022-03-08 15:33:10
...

一个整型数组里除了两个数字之外,其他的数字都出现了两次。请写程序找出这两个只出现一次的数字
运行时间:17ms
占用内存:9428k

//num1,num2分别为长度为1的数组。传出参数
//将num1[0],num2[0]设置为返回结果
import java.util.ArrayList;
public class Solution {
    public void FindNumsAppearOnce(int [] array,int num1[] , int num2[]) {
        ArrayList<Integer> list = new ArrayList<Integer>();
        for(int i=0;i<array.length;i++){
            if(!list.contains(array[i])) list.add(array[i]);
            else list.remove(new Integer(array[i]));
            //remove不装箱的话会被当作按照下标删除,add会自动装箱
        }
        if(list.size()!=0){
             num1[0]=list.get(0);
             num2[0]=list.get(1);
        }
        
    }
}

运行时间:17ms
占用内存:9664k

//num1,num2分别为长度为1的数组。传出参数
//将num1[0],num2[0]设置为返回结果
import java.util.HashSet;
public class Solution {
    public void FindNumsAppearOnce(int [] array,int num1[] , int num2[]) {
          HashSet<Integer>set= new HashSet<Integer>(); 
        for(int i=0;i<array.length;i++){
            if(set.contains(array[i]))set.remove(array[i]);
            else set.add(array[i]);
           
        }
     
               num1[0]= (int) set.toArray()[0];
               num2[0]= (int) set.toArray()[1];
        
           
          
    }
}