main.cpp 671 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // Created by tangs on 2018/11/18.
  3. //
  4. #include <iostream>
  5. using namespace std;
  6. void BubbleSort(int A[], int n) {
  7. int i, j;
  8. bool flag;
  9. for (i = 0; i < n - 1; i++) {
  10. flag = false;
  11. for (j = n - 1; j > i; j--) {
  12. if (A[j - 1] > A[j]) {
  13. swap(A[j - 1], A[j]);
  14. flag = true;
  15. };
  16. }
  17. if (flag == false) {
  18. return;
  19. }
  20. }
  21. }
  22. int main() {
  23. int A1[] = {6, 1, 5, 2, 1, 9, 10, 24, 7, 0};
  24. BubbleSort(A1, 10);
  25. // print:
  26. // 0 1 1 2 5 6 7 9 10 24
  27. for (int i = 0; i < 10; i++) {
  28. cout << A1[i] << " ";
  29. }
  30. cout << endl;
  31. return 0;
  32. }