1. Trang chủ
  2. » Công Nghệ Thông Tin

Thuật toán sắp xếp bubble sort C++

1 465 0

Đang tải... (xem toàn văn)

THÔNG TIN TÀI LIỆU

Thông tin cơ bản

Định dạng
Số trang 1
Dung lượng 10,38 KB

Nội dung

Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++Thuật toán sắp xếp bubble sort C++vvv

Trang 1

Thuật toán sắp xếp

bubble sort C++

#include<bits/stdc++.h> using namespace std; int main()

{

int a[10000],i,j,n;

cin>>n;

for(i=1;i<=n;i++)

{

cin>>a[i];

}

for(i=1;i<=n;i++)

for(j=1;j<=i-1;j++)

if(a[j]>=a[i])

swap(a[i],a[j]);/* doi vi tri */ for(i=1;i<=n;i++)

cout<<a[i]<<" ";

}

Ngày đăng: 02/12/2016, 22:38

TỪ KHÓA LIÊN QUAN

w