Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Osa 11 hajautustaulun kopioi() metodi #118

Open
shomarov opened this issue Jun 26, 2019 · 0 comments
Open

Osa 11 hajautustaulun kopioi() metodi #118

shomarov opened this issue Jun 26, 2019 · 0 comments

Comments

@shomarov
Copy link

shomarov commented Jun 26, 2019

private void kopioi(Lista<Pari<K, V>>[] uusi, int indeksista) {
    for (int i = 0; i < this.arvot[indeksista].koko(); i++) {
        Pari<K, V> arvo = this.arvot[indeksista].arvo(i);
  
        int hajautusarvo = Math.abs(arvo.getAvain().hashCode() % uusi.length);
        if(uusi[hajautusarvo] == null) {
            uusi[hajautusarvo] = new Lista<>();
        }
  
        uusi[hajautusarvo].lisaa(arvo);
    }
}

Siihen heti alkuun täytyy lisätä nullpointer tarkistus, muuten se heittää nullpointerexceptionin hajautustaulun kasvattamisen yhteydessä.

if (this.arvot[indeksista] == null) {
return;
}

Vuoden 2018 moocissa metodin alla oli seuraava teksti:

Metodissa on pieni virhe. Selvitä mistä virheessä on kyse ja korjaa se.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant