1/9
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
What are the complexities of Bubble Sort? Is it fast?
Θ(n²), no
What are the time complexities of Quick Sort? Is it fast?
O(n²) - Big-O(worst) | Θ(n log(n)) - average, yes
What are the time complexities of Selection Sort? Is it fast?
O(n²), no
What are the time complexities of Heap Sort? Is it fast?
Θ(n log(n)), yes
What are the time complexities of Radix Sort? Is it fast?
O(n), yes
What are the time complexities of Bucket Sort? Is it fast?
O(n²) - Big-O(worst) | Θ(n) - average, yes
What are the time complexities of Insertion Sort? Is it fast?
Θ(n²), no
What are the time complexities of Merge Sort? Is it fast?
Θ(n log(n)), yes
What are the time complexities of Linear Search?
O(n) - Big-O(worst) | Θ(n) - average
What are the time complexities of Binary Search?
O(log n) - Big-O(worst) | Θ(log n) - average