Code to Image
Input
Output
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 function bubbleSort(arr) { let n = arr.length; let swapped; do { swapped = false; for (let i = 0; i < n - 1; i++) { if (arr[i] > arr[i + 1]) { // Swap the elements let temp = arr[i]; arr[i] = arr[i + 1]; arr[i + 1] = temp; swapped = true; } } // Reduce n since the largest element will be at the end after each iteration n--; } while (swapped); return arr; } // Example usage let array = [64, 34, 25, 12, 22, 11, 90]; console.log("Sorted array:", bubbleSort(array));

Example

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 function bubbleSort(arr) { let n = arr.length; let swapped; do { swapped = false; for (let i = 0; i < n - 1; i++) { if (arr[i] > arr[i + 1]) { // Swap the elements let temp = arr[i]; arr[i] = arr[i + 1]; arr[i + 1] = temp; swapped = true; } } // Reduce n since the largest element will be at the end after each iteration n--; } while (swapped); return arr; } // Example usage let array = [64, 34, 25, 12, 22, 11, 90]; console.log("Sorted array:", bubbleSort(array));

Use in ChatGPT

Please show me the code of bubble sort and convert to image
AI
Here is the image of the Bubble Sort code in Python: View Image.