Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Pwnable
- 포너블
- 정보보호
- 정보보안
- 버그헌팅
- nefus
- DVP
- 코드게이트
- WarGame
- 포렌식
- 블록체인
- webhacking
- 문제풀이
- C언어
- 버그바운티
- 프로그래밍
- 선린인터넷고등학교
- xcz
- CTF
- 보안
- wargame.kr
- 해킹
- 웹해킹
- 네퓨즈
- 시스템
- 워게임
- hacking
- 자료구조
- webhacking.kr
- kangsecu
Archives
- Today
- Total
목록Sorting (1)
kangsecu's B1og
자료구조 - sorting
bubble sorting #include #include #define MAX_SIZE 10000 #define SWAP(x,y,t)((t)=(x),(x)=(y),(y)=(t)) int i; int list[MAX_SIZE]; void buble_sort(int list[],int n){ int cntA, cntB, temp; for(cntA = n-1;cntA >0; cntA--){ for (cntB=0;cntBlist[cntB+1]) SWAP(list[cntB],list[cntB+1],temp); } } } void main(){ int i; int list[MAX_SIZE]; int n =MAX_SIZE; for(i=0;i
Programming/c언어
2020. 4. 19. 23:16