We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: