面试题:数组中只出现一次的数字
Posted aaron12
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题:数组中只出现一次的数字相关的知识,希望对你有一定的参考价值。
题目描述:一个整型数组里除了两个数字之外,其他的数字都出现了偶数次。请写程序找出这两个只出现一次的数字。
方法1:哈希表
//num1,num2分别为长度为1的数组。传出参数 //将num1[0],num2[0]设置为返回结果 import java.util.HashMap; public class Solution { public void FindNumsAppearOnce(int [] array,int num1[] , int num2[]) { HashMap<Integer,Integer> map = new HashMap<>(); for(int i=0;i<array.length;i++){ Integer key = array[i]; Integer value = map.get(key); if(value!=null){ map.put(key,value+1); }else{ map.put(key,1); } } int index = 0; for(int i=0;i<array.length;i++){ if(map.get(array[i])==1&&index==0){ num1[index]=array[i]; index++; }else if(map.get(array[i])==1&&index==1){ num2[index-1]=array[i]; break; } } } }
方法2:
以上是关于面试题:数组中只出现一次的数字的主要内容,如果未能解决你的问题,请参考以下文章
面试题:找出数组中只出现一次的2个数(异或的巧妙应用)(出现3次)
#yyds干货盘点# 面试必刷TOP101:数组中只出现一次的两个数字