Java: метод удаления линейного зондирования

Я должен реализовать свою собственную хэш-таблицу с помощью линейного зондирования, однако у меня возникли проблемы с функцией удаления. это не работает правильно, но я не могу точно определить проблему:

public void remove(Student s){

    if(s==null) throw new NullPointerException("Student is null");  /*check if student is null*/

    if (!contains(s)){                                               /*stop if students is not in table*/
        throw new NullPointerException();
    }

    int i = hashFunction(s);
    for(int j = 0; j<array.length; j++){
        if(s.equals(array[j])){                                              /*found student*/
            array[j]=null;                                                  /*delete student*/
            break;
        }
    }

    for(int k= i; k<array.length; k++){             /* find out if next element exists, if yes, move it to the gap of deleted student */
        if(!(array[k]==null)){
        int tempnext= hashFunction(array[k]);

            if(i <= tempnext){
                array[i]=array[tempnext];
            }
        }
    }   
}

мой отладчик показывает это как вывод, так что у моего метода есть проблемы с пробелами в таблице:

Start:

Array-Indices: [ 0] [ 1] [ 2] [ 3] [ 4] [ 5] [ 6] [ 7]
Hash-Values:   [ 6] [ 1] [__] [ 6] [ 0] [ 5] [ 3] [ 0]
Number:        [ 9] [ 6] [__] [ 2] [ 3] [ 4] [ 5] [ 8]

Removing s6

Array-Indices: [ 0] [ 1] [ 2] [ 3] [ 4] [ 5] [ 6] [ 7]
Hash-Values:   [ 6] [ 6] [__] [ 6] [ 0] [ 5] [ 3] [ 0]
Number:        [ 9] [ 2] [__] [ 2] [ 3] [ 4] [ 5] [ 8]

Removing s5

Array-Indices: [ 0] [ 1] [ 2] [ 3] [ 4] [ 5] [ 6] [ 7]
Hash-Values:   [ 6] [ 6] [__] [ 5] [ 0] [ 5] [__] [ 0]
Number:        [ 9] [ 2] [__] [ 4] [ 3] [ 4] [__] [ 8]

Заранее благодарю за любую помощь!

0 ответов

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