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 |
Tags
- 문제풀이
- 해킹
- 선린인터넷고등학교
- nefus
- 자료구조
- WarGame
- kangsecu
- 버그바운티
- CTF
- 웹해킹
- 워게임
- 포렌식
- 시스템
- C언어
- webhacking.kr
- hacking
- webhacking
- 버그헌팅
- 보안
- xcz
- Pwnable
- 정보보호
- DVP
- 포너블
- 코드게이트
- 정보보안
- wargame.kr
- 블록체인
- 네퓨즈
- 프로그래밍
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