首頁 >Java >Java入門 >如何找出整數陣列中只出現一次的數字

如何找出整數陣列中只出現一次的數字

王林
王林轉載
2020-09-07 17:50:132649瀏覽

如何找出整數陣列中只出現一次的數字

可以利用hashMap的方法來實現,步驟如下:

(影片教學推薦:java課程

1 、HashMap中的鍵存儲數組array的數字,值存儲array中的數值出現的個數;

2、遍歷HashMap,找到Value值等於1的鍵,並將其儲存在新數組temp中;

3、將陣列temp裡面的值賦值給num1,num2;

#程式碼如下:

import java.util.Map;
import java.util.HashMap;
import java.util.Set;
public class Solution {
    public void FindNumsAppearOnce(int [] array,int num1[] , int num2[]) {
        Map<Integer,Integer> map=new HashMap();
        for(int i=0;i<array.length;i++){
            if(map.containsKey(array[i])){
                int len=map.get(array[i]);
                map.put(array[i],len+1);
            }else{
                map.put(array[i],1);
            }
        }
        int[] temp=new int[2];
        int index=0;
        Set<Map.Entry<Integer, Integer>> sm=map.entrySet();
        for (Map.Entry<Integer, Integer> entry : sm) {
            int t1=entry.getKey();
            int t2=entry.getValue();
            if(t2==1){
                temp[index++] = t1;
            }
        }
        num1[0]=temp[0];
        num2[0]=temp[1];
    }
}

更多教學請造訪java入門教程欄位。

以上是如何找出整數陣列中只出現一次的數字的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除

相關文章

看更多