Notice
Recent Posts
Recent Comments
Link
할껀하고놀자
[알고리즘] C++ split() 하는 초간단한 방법 본문
728x90
#include<iostream>
#include<cstring>
#include<vector>
using namespace std;
int main() {
char str[] = "00:12:34";
int cnt = 0;
char *context = NULL;
char *token = strtok_s(str, ":", &context);
while (token) {
cout << token << endl;
token = strtok_s(NULL, ":", &context);
}
}
'[IT] > 알고리즘' 카테고리의 다른 글
[알고리즘] 선택정렬 (0) | 2019.12.18 |
---|---|
[알고리즘] KMP 알고리즘 O(N+M) (0) | 2019.09.11 |
[알고리즘] 그리디 알고리즘 기초(C++) (0) | 2019.05.31 |
[알고리즘] 간단한 크루스칼 알고리즘 구현(C++) (0) | 2019.05.31 |
[알고리즘] 간단한 union-find 알고리즘의 구현(C++) (0) | 2019.05.31 |
Comments