티스토리 뷰
#include <stdio.h>
#define ARRYSIZ 200
void bubbleSort(int*,int); // bubbleSort
void prntData(int*,int); // 배열의 내용 출력
void main(){
int siz = 8, dataAry[ARRYSIZ] = {2,0,0,6,5,5,5,4}; // data배열, data의 크기
printf("\nBefore bubble sort:\n");
prntData(dataAry,siz); // 배열의 내용 출력
printf("\n\n");
bubbleSort(dataAry,siz); // bubbleSort
printf("\nAfter bubble sort:\n");
prntData(dataAry,siz); // 배열의 내용 출력
}
void prntData(int* dataAry,int siz){ // 배열의 내용 출력
int i=0;
while(i<siz){
printf("[%d] ",dataAry[i++]);
}
printf("\n");
}
void bubbleSort(int* dataAry, int siz){ // bubble sort
int i,j,temp;
for(i=siz-1;i>=0;i--){
for(j=0;j<i;j++){
if(dataAry[j]>dataAry[j+1]){ //뒤에 값과 비교하여 크면
temp = dataAry[j+1]; //값을 교환한다.
dataAry[j+1] = dataAry[j];
dataAry[j] = temp;
}
}
prntData(dataAry,siz); // 배열의 내용 출력
printf("\n");
}
}
- Total
- Today
- Yesterday
- 개발 설정
- insertion
- Independentsoft
- PoolingHttpClientConnectionManager
- 과거 버전 사용
- 그라파나
- react-native
- 443
- Queue
- springboot
- 암호
- sort
- 빌드 세팅
- array
- code push
- 링크드리스트
- Gradle
- docker
- setDoInput
- 스머핑
- elasticsearch
- Windows 서비스 등록
- 선 없이
- 정렬
- Stack
- 안드로이드
- 젠킨스
- java
- call back
- LinkedList
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |