Araf_12

Bubble Sort

May 29th, 2023 (edited)
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.02 KB | None | 0 0
  1. // Bubble sort in C++
  2.  
  3. #include <iostream>
  4. using namespace std;
  5.  
  6. // perform bubble sort
  7. void bubbleSort(int array[], int size) {
  8.  
  9.   // loop to access each array element
  10.   for (int step = 0; step < size; ++step) {
  11.      
  12.     // loop to compare array elements
  13.     for (int i = 0; i < size - step; ++i) {
  14.  
  15.       // compare two adjacent elements
  16.       // change > to < to sort in descending order
  17.       if (array[i] > array[i + 1]) {
  18.  
  19.         // swapping elements if elements
  20.         // are not in the intended order
  21.         int temp = array[i];
  22.         array[i] = array[i + 1];
  23.         array[i + 1] = temp;
  24.       }
  25.     }
  26.   }
  27. }
  28.  
  29. // print array
  30. void printArray(int array[], int size) {
  31.   for (int i = 0; i < size; ++i) {
  32.     cout << "  " << array[i];
  33.   }
  34.   cout << "\n";
  35. }
  36.  
  37. int main() {
  38.   int data[] = {-2, 45, 0, 11, -9};
  39.  
  40.   // find array's length
  41.   int size = sizeof(data) / sizeof(data[0]);
  42.  
  43.   bubbleSort(data, size);
  44.  
  45.   cout << "Sorted Array in Ascending Order:\n";  
  46.   printArray(data, size);
  47. }
Add Comment
Please, Sign In to add comment