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