250x250
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
- 원서읽기
- SQL
- dfs
- BFS
- the midnight library
- 알고리즘 문제
- D4
- 백준
- 코테 대비
- 삼성
- sw expert academy
- STUDYENGLISH
- readingbook
- 직무면접
- sw expert
- nightroutine
- 원서
- 알고리즘
- English
- 코딩테스트
- 완전탐색
- MySQL
- 프로그래머스
- 쉬운 알고리즘 문제
- 코테 준비
- 코테
- PyQt
- 원서읽자
- swexpertacademy
- englishbook
Archives
- Today
- Total
목록k번째 접미어 (1)
시나브로
[D5] 1256. [S/W 문제해결 응용] 6일차 - K번째 접미어
#include #include #include using namespace std; int count_number[10000] = { 0 }; typedef struct same { char charater; char next_charater; char next_next_charater; char next_next_next_charater; int index; }same; int compare(const void *a, const void *b) // 오름차순 비교 함수 구현 { same p1 = *(same *)a; same p2 = *(same *)b; if (p1.charater p2.charater) retu..
알고리즘/SW Expert Academy
2019. 10. 6. 10:59