Как отобразить ключи из карты<int [], Double>?

Я хочу добавить x элементов (только ключи) из отсортированной карты в список и отобразить их.

public static ArrayList<int[]> miZrodzicowIpotomstwa(Map<int[],Double> mapVectFunc_tmp, int x)
{
    ArrayList<int[]> listaMi = new ArrayList<>();
    ArrayList<int[]> klucz_t = new ArrayList<>(mapVectFunc_tmp.keySet());

    for(int i=0; i<x; i++)
    {
        listaMi.add(klucz_t.get(i));
    }
    return listaMi;
}

в основном:

Map<int[],Double> mapVectFunc = new LinkedHashMap<int[],Double>();
int []t1={1,0,0,1};
int []t2={1,1,0,0};
int []t3={1,0,1,1};
mapVectFunc.put(t1,26.0);
mapVectFunc.put(t2,1.0);
mapVectFunc.put(t3,6767.0);
ArrayList<int[]> ll= miZrodzicowIpotomstwa(mapVectFunc, 2);
System.out.printf("\n list of two keys: "+ll);

Я получил следующие значения (не массивы):

список двух ключей: [[I@54bedef2, [I@5caf905d]

У кого-нибудь есть идеи, как преобразовать его в массивы?

4 ответа

Решение

Вы можете распечатать их так.

public static void main(String[] args) {
    Map<int[], Double> mapVectFunc = new LinkedHashMap<int[], Double>();
    int[] t1 = { 1, 0, 0, 1 };
    int[] t2 = { 1, 1, 0, 0 };
    int[] t3 = { 1, 0, 1, 1 };
    mapVectFunc.put(t1, 26.0);
    mapVectFunc.put(t2, 1.0);
    mapVectFunc.put(t3, 6767.0);
    ArrayList<int[]> ll = miZrodzicowIpotomstwa(mapVectFunc, 2);

    int c = 0;
    for (int[] i : ll) {
        System.out.println("Array" + c++);
        for (int j : i) {
            System.out.println(j);
        }
    }   
}
for (int[] i : l1){
    for(int j:i){
        System.out.println(j);
    }
}

Проблема в ключе хэш-карты. Пожалуйста, попробуйте с кодом ниже

public static void main(String[] args) {
        Map<Integer[], Double> mapVectFunc = new LinkedHashMap<Integer[], Double>();
        Integer[] t1 = { 1, 0, 0, 1 };
        Integer[] t2 = { 1, 1, 0, 0 };
        Integer[] t3 = { 1, 0, 1, 1 };
        mapVectFunc.put(t1, 26.0);
        mapVectFunc.put(t2, 1.0);
        mapVectFunc.put(t3, 6767.0);
        ArrayList<Integer> ll = miZrodzicowIpotomstwa(mapVectFunc, 2);
        System.out.printf("\n list of two keys: " + ll);
    }

    public static ArrayList<Integer> miZrodzicowIpotomstwa(Map<Integer[], Double> mapVectFunc_tmp, int x) {
        ArrayList<Integer> klucz_t = new ArrayList<>();

        for (Integer[] arr : mapVectFunc_tmp.keySet()) {
            ;
            klucz_t.addAll(Arrays.asList(arr));
        }
        return klucz_t;
    }
ArrayList<int[]> ll= miZrodzicowIpotomstwa(mapVectFunc, 2);
...
System.out.println("\n list of two keys: ");
for (int[] i: ll.keySet()){

            String key =i.toString();
            String value = ll.get(i).toString();  
            System.out.println(key + " " + value);  
}

Немного больше здесь: Печать HashMap в Java

Другие вопросы по тегам