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
- 3D #Reconstruction #computer #vision #volume #metric #tsdf #kinect #fusion
- 백준
- 3343
- boj #백준
- hcpc
- 이분탐색 #dp #11053
- 20117
- 최소 #공배수 #최대 #공약수 #유클리드 #호제법 #lcm #gcd #c++ #boj #3343 #백준 #장미
- c++ #boj #
- 사이클 없는 그래프
- 호반우 상인
- 쌤쌤쌤
- 22869
- 줄어드는수
- 투포인터 #백준 #boj #20922 #22862
- 레드아보
- backtracking #codetree #디버깅 #삼성코테
- graph
- 진법변환 #2to10 #10to2 #이진법 #십진법 #변환 #bitset #c++
- LIS #가장긴증가하는부분수열 #
- N번째큰수
- graph #최단경로
- c++ #입출력 #속도 #ios #sync_with_stdio #cin #cout #tie
- 백준 #다익스트라 #dijkstra #9370 #c++
- BOJ
- 30870
- 1174
- C++
- 코딩
- 16202
Archives
- Today
- Total
목록알고리즘 연습/코딩도장 (3)
hyunjin

#define _CRT_SECURE_NO_WARNINGS #include #include #include #include int main() { char str[30]; int left = 0, end, flag = 1; scanf("%[^\n]s", str); for (end = strlen(str) - 1; left
알고리즘 연습/코딩도장
2019. 7. 29. 15:40

-scanf로 공백 포함해서 입력 받기 -strtok로 문자를 제외한 나머지로 분리하고 -strcmp로 the와 비교해 맞으면 count ptr = strtok(s, "[^abcdefghijklmnopqrstuwvxyzABCDEFGHIJKLMNOPQRSTUWVXYZ]"); 이렇게 하려면 어떻게 해야할까 #define _CRT_SECURE_NO_WARNINGS #include #include #include int main() { int count = 0; char s[1000], * ptr = strtok(s, ",.- "); scanf("%[^\n]s",s); while (ptr != NULL) { if (ptr != NULL && !strcmp(ptr, "the")) count++; ptr = str..
알고리즘 연습/코딩도장
2019. 7. 22. 14:05