Skip List Removal Algorithm

Goals

Students will understand elements of the removal algorithm for skip lists.

Video

Materials

One deck of Acorn cards.

Sample cards from the Acorn deck.
Sample cards from the Acorn deck.

Setup

Shuffle the deck and deal each student 8 cards.

Each student will shuffle their 8 cards, and then create a skip list as demonstrated on the insertion algorithm page.

Algorithm

The removal algorithm for skip lists follows the same basic procedures found in the Where to Remove portion of the insertion algorithm. The card we are looking to remove will be our remove card, the highest level head card will be our compare card, and the highest level will be our current level.

Where to Remove

  1. If the remove card is greater than the compare card, look to the card to the right of the compare card at the current level.

    1. If the remove card is greater than the found card, repeat the Where to Remove step again with the found card becoming the compare card next time around.

    2. If the remove card is less than the found card, and

      1. If the current level is greater than level 1, repeat the Where to Remove step again with the level below the current level becoming the current level next time around.

      2. If the current level is level 1, the list does not contain the remove card and we are unable to remove it.

    3. If the remove card is the found card, remove the found card from the list. Shift the cards following the remove card back to fill the hole. If there are no cards at the current level after removing and there are no head or tail cards above the current level, remove the head and tail cards at the current level.

Example

We’ll start by building a skip list according to the insertion algorithm.

Sample list created by insertion algorithm.
Sample list created by insertion algorithm.

Remove 34

The highest level head card in the list will be our compare card. The highest level, level 3, will be our current level. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 16 to the right. The remove card is greater than the found card, so we will repeat the Where to Remove step again with the found card becoming the compare card next time around. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the tail to the right. The remove card is less than the found card and our current level is greater than level 1, so we will repeat the Where to Remove step again with the level below the current level, level 2, becoming the current level next time around. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 34 to the right. The remove card is the found card, so we will remove the found card from the list and shift the cards following the remove card to fill the hole. There are still cards at the current level so we can continue.

34 removed from list.
34 removed from list.

Remove 4

The highest level head card in the list will be our compare card. The highest level, level 3, will be our current level. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 16 to the right. The remove card is less than the found card and the current level is greater than level 1 so we will repeat the Where to Remove step again with the level below the current level, level 1, becoming the current level next time around. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 4 to the right. The remove card is the found card, so we will remove the found card from the list and shift the cards following the remove card to fill the hole. There are still cards at the current level so we can continue.

4 removed from list.
4 removed from list.

Remove 49

The highest level head card in the list will be our compare card. The highest level, level 3, will be our current level. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 16 to the right. The remove card is greater than the found card, so we will repeat the Where to Remove step again with the found card becoming the compare card next time around. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the tail to the right. The remove card is less than the found card and our current level is greater than level 1, so we will repeat the Where to Remove step again with the level below the current level, level 2, becoming the current level next time around. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 40 to the right. The remove card is greater than the found card, so we will repeat the Where to Remove step again with the found card becoming the compare card next time around. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the tail to the right. The remove card is less than the found card and our current level is greater than level 1, so we will repeat the Where to Remove step again with the level below the current level, level 1, becoming the current level next time around. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 49 to the right. The remove card is the found card, so we will remove the found card from the list and shift the cards following the remove card to fill the hole. There are still cards at the current level so we can continue.

49 removed from list.
49 removed from list.

Remove 10

The highest level head card in the list will be our compare card. The highest level, level 3, will be our current level. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 16 to the right. The remove card is less than the found card and the current level is greater than level 1 so we will repeat the Where to Remove step again with the level below the current level, level 2, becoming the current level next time around. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 16 to the right. The remove card is less than the found card and the current level is greater than level 1 so we will repeat the Where to Remove step again with the level below the current level, level 1, becoming the current level next time around. Since the remove card is greater than the compare card we will look to the card to the right of the compare card at the current level.

We find the 16 to the right. The remove card is less than the found card and the current level is level 1, so the list does not contain the remove card and we are unable to remove it.

10 removed from list.
10 removed from list.

Exercises

Evaluation