Skip Lists Flashcards

1
Q

What is the best case for Inserting in a skip list?

A

O ( log n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the best case for Searching in a skip list?

A

O ( log n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the best case for Removing in a skip list?

A

O ( log n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the worst case for Inserting in a skip list?

A

O ( n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is the worst case for Searching in a skip list?

A

O ( n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the worst case for Removing in a skip list?

A

O ( n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is the average case for Inserting in a skip list?

A

O ( log n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the average case for Searching in a skip list?

A

O ( log n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the average case for Removing in a skip list?

A

O ( log n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the space complexity of a Skip List?

A

O ( n log n )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly