일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- #1차원배열
- border-box
- html object
- html charset
- #3차원배열
- git flow
- hyperledger transaction
- #자바상속#자바이즈어#is~a
- #binary
- #bubbleSort
- html plug-in
- html code
- html multimedia
- mac terminal command
- #C++ has~a
- #2차원배열
- html video
- relative path
- docker example
- #JAVASCRIPT
- html youtube
- #CallByAddress
- #다차원포인터
- html5 new tag
- #C++ 연산자함수오버로딩
- html id
- #성적관리프로그램
- 하이퍼레저패브릭
- #android activity
- 토큰경제
Archives
- Today
- Total
A sentimental robot
Bubble sort 본문
#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 |