A sentimental robot

Bubble sort 본문

Data Structure

Bubble sort

GOD03219 2018. 1. 3. 14:18

#include <stdio.h>
void bubble(int data[],int len){

 int temp = 0;


 for(int i=0 ;i<len ; i++){
  for(int j=i+1; j<len; j++){
   if(data[i]>data[j])
   {
    temp=data[i];
    data[i]=data[j];
    data[j]=temp;

   }
  
  }

 }

}
void main()
{
 int data[5]={90,78,100,30,35};
 bubble(data,5);


 for(int i=0;i<5;i++)
  printf("%d\t",data[i]);

}

'Data Structure' 카테고리의 다른 글

quirt some  (0) 2018.02.13
콜라체의 수 / 우박수  (0) 2018.02.13
Double LinkedList  (0) 2018.01.03
Single LinkedList Exercise3  (0) 2018.01.03
Map에 대하여..  (0) 2018.01.03