Algorithm
BOJ 5397 키로거 c++
BOJ 5397 키로거 c++ 백준 5397 키로거 c++ #include using namespace std; int L; void hacking(string line) { list editor; auto t = editor.end(); for (char c: line) { if (c == '') { if (!(t == editor.end())) { t++; } } else if (c == '-') { if (!(t == editor.begin())) { t--; t = editor.erase(t); } } else { editor.insert(t, c); } } for (auto c: editor) { cout L; while (L--) { string line; cin ..
2020. 8. 16. 15:04
최근댓글