목록C++ (74)
일상 코딩
https://blogshine.tistory.com/101 코딩테스트 효과적인 C++ 코드 작성 팁 해당 본문의 원문의 출처는 Geeks for Geeks 입니다. 이과생이 공부겸 번역한 딱딱한 어투의 글 입니다. 문제가 될시 삭제하겠습니다. Writing C/C++ code efficiently in Competitive programming - GeeksforGee.. blogshine.tistory.com
#include #include using namespace std; int main() { ios_base::sync_with_stdio(false); ifstream cin; cin.open("input.txt"); int N, sum(0), ds(9), c(1), res(0); cin >> N; while (sum + ds < N) { res = res + (ds * c); sum += ds; ds *= 10; c++; } res = res + (N - sum) * c; cout
XCODE 삭제시 나오는 에러 코드 xcrun: error: active developer path (“/Applications/Xcode.app/Contents/Developer”) does not exist Solution sol.1 - xcode-select 설치 $ xcode-select --install sol.2 - 설치 위치 확인 $ which xcode-select sol.3 - reset $ sudo xcode-select --reset
https://github.com/gilbutITbook/007028 GitHub - gilbutITbook/007028: 소스 코드 소스 코드. Contribute to gilbutITbook/007028 development by creating an account on GitHub. github.com https://book.naver.com/bookdb/book_detail.nhn?bid=14742427 모던 C++ 디자인 패턴 모던 C++로 배우는 디자인 패턴새로운 기능으로 풍부해진 C++로 다시 배운다C++는 C++11/14/17을 거치면서 강력한 언어로 발전했으며, 표현력이 풍부해졌다. GoF의 전통적인 디자인 패턴을 표현력이 book.naver.com
C++ 온라인 컴파일러 사이트 https://replit.com/~ https://www.onlinegdb.com/online_c++_compiler https://cpp.sh/ https://www.tutorialspoint.com/compile_cpp_online.php #include using namespace std; template T getMax(T x, T y) { return (x > y) ? x : y; } int main() { { cout
C++ 온라인 컴파일러 사이트 https://replit.com/~ https://www.onlinegdb.com/online_c++_compiler https://cpp.sh/ https://www.tutorialspoint.com/compile_cpp_online.php #include #include #include #include #include #include using namespace std; int main() { { vector container; for (int i = 0; i < 10; ++i) container.push_back(i); auto itr = std::min_element(container.begin(), container.end()); cout
C++ 온라인 컴파일러 사이트 https://replit.com/~ https://www.onlinegdb.com/online_c++_compiler https://cpp.sh/ https://www.tutorialspoint.com/compile_cpp_online.php #include #include #include #include #include using namespace std; int main() { vector container; for (int i = 0; i < 10; ++i) container.push_back(i); { // vector::iterator vector::const_iterator itr; itr = container.begin(); while (itr != conta..
#include #include #include #include #include #include #include #include using namespace std; void sequence_containers() { // vector { vector vec; for (int i=0; i < 10; ++i) // 뒤로만 추가 vec.push_back(i); for(auto & e : vec) cout
#include #include #include // std::min // Reference : http://thbecker.net/articles/auto_and_decltype/section_01.html using namespace std; class Examples { public: void ex1() { std::vector vect; for (std::vector::iterator itr = vect.begin(); itr != vect.end(); ++itr) cout m_x) m_x_type; // add references to L-values // with const typedef decltype((x)) x_with_parens_type; typedef decltype((cx)) cx..