• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/16

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

16 Cards in this Set

  • Front
  • Back
Quicksort (Best)
O(n log(n))
Quicksort (Worst)
O(n^2)
Mergesort (Best)
O(n log(n))
Mergesort (Worst)
O(n log(n))
Heapsort (Best)
O(n log(n))
Heapsort (Worst)
O(n log(n))
Bubble Sort (Best)
O(n)
Bubble Sort (Worst)
O(n^2)
Insertion Sort (Best)
O(n)
Insertion Sort (Worst)
O(n^2)
Select Sort (Best)
O(n^2)
Select Sort (Worst)
O(n^2)
Bucket Sort (Best)
O(n+k)
Bucket Sort (Worst)
O(n^2)
Radix Sort (Best)
O(nk)
Radix Sort (Worst)
O(nk)