Blog Article

https://ardpratama.blogspot.com/favicon.ico ardpratama

Program Sorting c++ Bubble Sort, Insertion Sort dan Selection Sort

program sorting c++

Program Sorting c++ Bubble Sort, Insertion Sort dan Selection Sort - Assalamualaikum. Selamat malam kali ini ardpratama akan sedikit share tentang program atau listing code tipe sorting pada c++ yaitu bubble sort, insertion sort dan selection sort. Program ini memberikan pilhan tipe sorting kemudian user diminta untuk memasukan data sebanyak 5. Kemudian program akan melakukan pengurutan dan memprint hasil pengurutan secara descending. Program sorting kali ini juga memberikan data proses perpindahan angka saat proses sorting. Berikut listing code nya :

#include<time.h>
#include<iostream>
#include<conio.h>
#include<windows.h>

using namespace std;
int main() {

int pil;
cout << "======= Program Sorting (Bubble, Insertion, Selection) =========="<<endl<<endl;
cout << "1. Bubble sort" <<endl;
cout << "2. Insertion sort" <<endl;
cout << "3. Selection sort" <<endl<<endl;
cout << "==============================="<<endl<<endl;

cout << "Masukan pilihan anda = "; cin >> pil;

switch(pil) {



 ////////////////////////////////////

 ////  Buble start /////////////

 ////////////////////////

case 1:
system("cls");
cout << endl;
cout << "Bubble sort"<<endl;
cout << "=============="<<endl;

int t1,t2;
 
    int hold;
int array[5];

cout<<"Masukan 5 angka :"<<endl;

for(int i=0; i<5; i++) {
cout << "  angka ke " <<i+1 <<" = ";cin>>array[i];
}
cout<<endl;
cout<<endl;
t1=GetTickCount();
cout<<"Sebelum di sortir = ";

for(int j=0; j<5; j++) {
cout<<array[j];
cout<<"  ";
}

cout<<endl;

cout <<endl<< "Urutan program"<<endl;
for(int i=0; i<4; i++) {
for(int j=0; j<4; j++) {
if(array[j]<array[j+1]) {
hold=array[j];
array[j]=array[j+1];
array[j+1]=hold;

for(int i=0; i<5; i++) {
cout<<array[i]<<"  ";
}
cout<<endl;
}


}

}
cout<<endl;
cout<<"Setelah di sortir = ";

for(int i=0; i<5; i++) {
cout<<array[i]<<"  ";
}
    cout<<endl;
t2=GetTickCount();
cout << endl <<"Lama proses = " << (int)(t2 - t1) << " ms";
cout<<endl;

break;


//////////////////////////////////////////////////////////

///////     Insertion start               /////////

////////////////////////////////////////////////



case 2:
system("cls");
cout << "Insertion sort";
cout <<endl<<"============="<<endl;
cout<<endl;
int t3,t4;
 
int Key;
int array1[5];

cout<<"Masukan 5 angka : "<<endl;

for(int i=0; i<5; i++)  {
cout << "  angka ke " <<i+1 <<" = ";cin>>array1[i];
}

cout<<endl;
t3=GetTickCount();
cout<<"Angka sebelum di sortir = ";

for(int j=0; j<5; j++) {
cout<<array1[j]<<"  ";

}

cout<<endl;
cout<<endl<< "Data proses "<<endl;
for(int j=1 ; j < 5 ; j++) {
Key = array1[j];              
int i = j-1;                  
while(i >= 0 && array1[i] < Key) {
array1[i + 1] = array1[i];
i = i - 1;
}
array1[i + 1] = Key;

for(int l=0; l<5; l++) {
cout<<array1[l]<<"  ";

}
cout<<endl;
}
cout<<endl<<"Angka setelah disortir = ";

for(int i=0; i<5; i++) {
cout<<array1[i]<<"  ";

}
t4=GetTickCount();
cout << endl<<endl <<"Lama proses = " << (int)(t4 - t3) << " ms";
cout<<endl;

break;



////////////////////////////////////////////////////////

//////////////   Selection start /////////////////////

/////////////////////////////////////


case 3:
system("cls");
cout << "Selection sort";
cout <<endl<< "================="<<endl<<endl;
int t5,t6;
int arr[5];
int mini,temp;

cout<<"masukan 5 angka ="<<endl;

for(int i=0; i<5; i++) {
cout << "  angka ke " <<i+1 <<" = ";cin>>arr[i];
}
t5=GetTickCount();
cout<<endl;
cout<<"Angka sebelum di sortir = ";

for(int j=0; j<5; j++) {
cout<<arr[j]<<"  ";

}

for(int r1=0;r1<4;r1++) {
mini=r1;
for(int r2=r1+1; r2<5; r2++)
if(arr[r2]>arr[mini])
mini=r2;
if(mini !=r1) {
temp=arr[r1];
arr[r1]=arr[mini];
arr[mini]=temp;
}
}
cout<<endl;
cout<<endl;
cout<<"Setelah di sortir = ";
for(int q=0; q<5; q++) {
cout<<arr[q]<< "  " ;

}
t6=GetTickCount();
cout << endl<<endl <<"Lama proses = " << (int)(t6 - t5) << " ms";
cout<<endl;
break;


//////////////////////////////////////////

//////           PILIHAN TIDAK ADA   /////////

//////////////////////////////////////////
default:
system("cls");
cout << "Pilihan tidak ada";
break;

}  



getch();
}

Saya rasa sekian untuk posting kali ini tentang program sorting c++ bubble sort, insertion sort dan selection sort. Terima kasih telah berkunjung.

Wassalamualaikum wr.wb

img-src :http://www.stoimen.com/blog/wp-content/uploads/2012/02/InsertionSort.png


Program Sorting c++ Bubble Sort, Insertion Sort dan Selection Sort 4.5 5 Ardi Pratama Program Sorting c++ Bubble Sort, Insertion Sort dan Selection Sort - Assalamualaikum. Selamat malam kali ini ardpratama akan sedikit shar...

3 komentar:

  1. bang klo datanya udh ada di program jdi gk perlu inputan dari user ngubahnya gmn?

    BalasHapus
    Balasan
    1. sama kalo ngurutin dari data terkecil ke terbesar

      Hapus
    2. waduh ni dulu kok ga ada screenshoot output programnya ya wkwk, bikin fungsi untuk generate number gan kalo mau otomatis, kalau manual bisa bikin file yang berisi number di file tersebut terus di read dari c++

      Hapus