Recall & Review
beginner
What is the main idea behind the Bubble Sort algorithm?
Bubble Sort repeatedly compares adjacent elements and swaps them if they are in the wrong order, "bubbling" the largest unsorted element to the end in each pass.
Click to reveal answer
beginner
How many passes does Bubble Sort make in the worst case for an array of size n?
In the worst case, Bubble Sort makes n-1 passes through the array to fully sort it.
Click to reveal answer
intermediate
What is the time complexity of Bubble Sort in the average and worst cases?
The time complexity is O(n²) because it compares and swaps elements in nested loops.
Click to reveal answer
intermediate
How can Bubble Sort be optimized to stop early if the array is already sorted?
By adding a flag to check if any swaps happened in a pass; if no swaps occur, the array is sorted and the algorithm stops early.
Click to reveal answer
beginner
Write the basic step of Bubble Sort comparing two adjacent elements a[i] and a[i+1].
If a[i] > a[i+1], swap a[i] and a[i+1] to move the larger element towards the end.
Click to reveal answer
What does Bubble Sort do in each pass through the array?
✗ Incorrect
Bubble Sort compares adjacent elements and swaps them to move the largest unsorted element to the end in each pass.
What is the worst-case time complexity of Bubble Sort?
✗ Incorrect
Bubble Sort uses nested loops, resulting in O(n²) time complexity in the worst case.
Which of these is a simple optimization for Bubble Sort?
✗ Incorrect
If no swaps occur in a pass, the array is already sorted, so Bubble Sort can stop early.
After the first pass of Bubble Sort on an unsorted array, what can we say about the last element?
✗ Incorrect
The largest element "bubbles" to the end after the first pass.
Which data structure does Bubble Sort work on?
✗ Incorrect
Bubble Sort works on arrays or lists where elements can be accessed by index.
Explain how Bubble Sort works step-by-step on a small array.
Think about how the biggest number moves to the right in each pass.
You got /4 concepts.
Describe one way to improve Bubble Sort's efficiency.
Consider what happens if the array is already sorted.
You got /4 concepts.