web-dev-qa-db-fra.com

Comment parcourir une carte en java?

Je dois parcourir un BucketMap et obtenir tous keys mais comment puis-je arriver à quelque chose comme buckets[i].next.next.next.key _ par exemple sans le faire manuellement comme j'ai essayé ici:

public String[] getAllKeys() {

    int j = 0;      //index of string array "allkeys"

    String allkeys[] = new String[8];

    for(int i = 0; i < buckets.length; i++) { //iterates through the bucketmap

        if(buckets[i] != null) {             //checks wether bucket has a key and value
            allkeys[j] = buckets[i].key;     //adds key to allkeys
            j++;                             // counts up the allkeys index after adding key

            if(buckets[i].next != null) {         //checks wether next has a key and value
                allkeys[j] = buckets[i].next.key; //adds key to allkeys
                j++;
            }
        }
    }

    return allkeys;
}

Aussi, comment puis-je initialiser le String[] allkeys en utilisant la version de j obtenue après l’itération sous forme d’index?

18
NoIdea

Pour une utilisation basique, le HashMap est le meilleur, j'ai mis comment itérer dessus, plus facile que d'utiliser un itérateur:

public static void main (String[] args) {
    //a map with key type : String, value type : String
    Map<String,String> mp = new HashMap<String,String>();
    mp.put("John","Math");    mp.put("Jack","Math");    map.put("Jeff","History");

    //3 differents ways to iterate over the map
    for (String key : mp.keySet()){
        //iterate over keys
        System.out.println(key+" "+mp.get(key));
    }

    for (String value : mp.values()){
        //iterate over values
        System.out.println(value);
    }

    for (Entry<String,String> pair : mp.entrySet()){
        //iterate over the pairs
        System.out.println(pair.getKey()+" "+pair.getValue());
    }
}

Une explication rapide:

for (String name : mp.keySet()){
        //Do Something
}

signifie: "Pour toutes les chaînes des clés de la carte, nous ferons quelque chose, et à chaque itération, nous appellerons la clé 'nom' (ce peut être ce que vous voulez, c'est une variable)


Et c'est parti :

public String[] getAllKeys(){ 
    int i = 0;
    String allkeys[] = new String[buckets.length];
    KeyValue val = buckets[i];

    //Look at the first one          
    if(val != null) {             
        allkeys[i] = val.key; 
        i++;
    }

    //Iterate until there is no next
    while(val.next != null){
        allkeys[i] = val.next.key;
        val = val.next;
        i++;
    }

    return allkeys;
}
44
azro

Voir si cela aide,

  HashMap< String, String> map = new HashMap<>();
  Set<String> keySet = map.keySet();
  Iterator<String> iterator = keySet.iterator();
  while(iterator.hasNext())
  {
    //iterate over keys
  }

//or iterate over entryset 
Iterator<Entry<String, String>> iterator2 = map.entrySet().iterator();

while(iterator2.hasNext())
{
    Entry<String, String> next = iterator2.next();
    //get key
    next.getKey();
    //get value
    next.getValue();
}
3
DNAj

Avec Java 8, je vous suggérerais d’utiliser Stream API.

Cela vous permettra de parcourir la carte de manière beaucoup plus pratique:

public void iterateUsingStreamAPI(Map<String, Integer> map) {
    map.entrySet().stream()
      // ...
      .forEach(e -> System.out.println(e.getKey() + ":" + e.getValue()));
}

Découvrez d'autres exemples sur itération via des cartes en Java .

0
Johnny