Data Structure & Algorithm
FullStackDost DSA Visualizer
Learn Data Structures & Algorithms Through Interactive VisualizationsBubble Sort
Repeatedly steps through list, compares adjacent items and swaps them if in wrong order. Highest element bubbles up to top.
Time Complexity
O(n)
O(n^2)
O(n^2)
Space & Structure
O(1)
Yes
Sorting
Real-World Engineering Application
Educational concept demonstrations, verifying if array is already sorted in O(n) check.
def bubble_sort(arr):
n = len(arr)
for i in range(n):
swapped = False
for j in range(0, n - i - 1):
if arr[j] > arr[j + 1]:
arr[j], arr[j + 1] = arr[j + 1], arr[j]
swapped = True
if not swapped: break
return arr