hashmap遍历
import java.util.*;

public class Gift {
    public int getValue(int[] gifts, int n) {
        // write code here
        Map<Integer,Integer> countMap=new HashMap<>();
        for(int gift:gifts){
            int count=countMap.getOrDefault(gift,0);
            if(count+1>n/2){
                 return gift;
                 
            }
            countMap.put(gift,countMap.getOrDefault(gift,0)+1);
        }
        return 0;
    }
}