Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Bubble Sort and Complexity
00:00
5 left

Bubble Sort and Complexity

MediumPython

Problem

Write the code of bubble sort and explain its time and space complexities.

Implement bubble_sort(arr) to sort a list of integers in ascending order and return the sorted list. The algorithm must sort the input in place and should stop early when a complete pass makes no swaps.

Use only constant extra space. State the best-case, average-case, worst-case time complexities and the auxiliary space complexity.

Constraints

  • 0 <= len(arr) <= 500
  • -10^9 <= arr[i] <= 10^9
  • The input list must be sorted in place
  • Return the same list object after sorting

Function Signature

def bubble_sort(arr):
Interviewer

Your question is Bubble Sort and Complexity. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.