Eat Study Love

먹고 공부하고 사랑하라

SW 만학도/C++ & Algorithm 19

Review 11 - Dynamic Programming

https://eglife.tistory.com/123 Review 10 - Single-Source-Shortest Path in C++https://eglife.tistory.com/103 Review 9 - MST(Minimum Spanning Trees) in C++https://eglife.tistory.com/98 [Algorithm] Review 8 - Priority Queues and Heaps in C++https://eglife.tistory.com/92 [Main course!] Review 7 - Inheritance in C++https://eglife.tiseglife.tistory.com 프로그래밍 최악의 손님 DP다. 재귀적으로 진행되는 코딩은 솔루션을 펼쳐놓고 봐도 뭔 소..

Review 10 - Single-Source-Shortest Path in C++

https://eglife.tistory.com/103 Review 9 - MST(Minimum Spanning Trees) in C++https://eglife.tistory.com/98 [Algorithm] Review 8 - Priority Queues and Heaps in C++https://eglife.tistory.com/92 [Main course!] Review 7 - Inheritance in C++https://eglife.tistory.com/89 Review 5 - Special Members in C++https://eglife.tistory.com/88 eglife.tistory.comGraph의 path와 관련된 알고리즘이다. 특정 노드에서 출발하는 가장 짧은 path를 찾는..

Review 9 - MST(Minimum Spanning Trees) in C++

https://eglife.tistory.com/98 [Algorithm] Review 8 - Priority Queues and Heaps in C++https://eglife.tistory.com/92 [Main course!] Review 7 - Inheritance in C++https://eglife.tistory.com/89 Review 5 - Special Members in C++https://eglife.tistory.com/88 Review 4 - Class,Overloading,Special Members in C++https://eglife.tistory.com/87 Revieglife.tistory.com본격적으로 알고리즘의 세계에 발을 디뎠다.  1. Graph 이 장을 포함해,..

[Algorithm] Review 8 - Priority Queues and Heaps in C++

https://eglife.tistory.com/92 [Main course!] Review 7 - Inheritance in C++https://eglife.tistory.com/89 Review 5 - Special Members in C++https://eglife.tistory.com/88 Review 4 - Class,Overloading,Special Members in C++https://eglife.tistory.com/87 Review 2 - Functions and Memory Management in C++https://eglife.tistory.com/85eglife.tistory.com 이제 C++의 OOP를 위한 기본적인 공부는 끝이 났다. 이제 좀 Advanced한 영역인데, ..

[Main course!] Review 7 - Inheritance in C++

https://eglife.tistory.com/89 Review 5 - Special Members in C++https://eglife.tistory.com/88 Review 4 - Class,Overloading,Special Members in C++https://eglife.tistory.com/87 Review 2 - Functions and Memory Management in C++https://eglife.tistory.com/85 Review 2 - Container, Iteration in C++https://eglife.tistory.coeglife.tistory.com오죽하면 제목에도 Main Course라고 달아놓았으랴.. C++의 꽃 C++ 그 잡채! 인 C++ Class 상속..

Review 5 - Special Members in C++

https://eglife.tistory.com/88 Review 4 - Class,Overloading,Special Members in C++https://eglife.tistory.com/87 Review 2 - Functions and Memory Management in C++https://eglife.tistory.com/85 Review 2 - Container, Iteration in C++https://eglife.tistory.com/83 Review 1 - Basic Standard Library in C++(Cin/out,file I/O, String)이번엔eglife.tistory.com요번 콘텐츠는 내용이 많지가 않다. Copy 와 Move Semantic을 좀 집고 넘어갈 건데..

Review 4 - Class,Overloading,Special Members in C++

https://eglife.tistory.com/87 Review 2 - Functions and Memory Management in C++https://eglife.tistory.com/85 Review 2 - Container, Iteration in C++https://eglife.tistory.com/83 Review 1 - Basic Standard Library in C++(Cin/out,file I/O, String)이번엔 C++의 기초 복습이다. 사실 C++이 이름때문에 프로그래밍 언eglife.tistory.com 금번엔 C++의 꽃! Class에 대해서 관련된 것들을 심도있고 빠르게 파보겠다. 요놈부터가 사실상 C++의 Main Content라고해도 과언이 아니다.  위 질문에 대한 ..

Review 3 - Functions and Memory Management in C++

https://eglife.tistory.com/85 Review 2 - Container, Iteration in C++https://eglife.tistory.com/83 Review 1 - Basic Standard Library in C++(Cin/out,file I/O, String)이번엔 C++의 기초 복습이다. 사실 C++이 이름때문에 프로그래밍 언어 중에 제일 끝판왕 격으로 어려운 줄 알았으나, C가eglife.tistory.com기초적인 C++의 Container들이 무엇이 있는지 배웠으니, 이제 그것들을 이용해서 각종 Fucntion을 어떻게 만들고, 그 때마다 Memory 할당은 어떻게 되는지 알아볼 시간! 1. Functions #include using namespace std;i..

Review 2 - Container, Iteration in C++

https://eglife.tistory.com/83 Review 1 - Basic Standard Library in C++(Cin/out,file I/O, String)이번엔 C++의 기초 복습이다. 사실 C++이 이름때문에 프로그래밍 언어 중에 제일 끝판왕 격으로 어려운 줄 알았으나, C가 젤 짜치긴 하다;; ㅎㅎ C 하다가 C++ 넘어오면 C++은 양반이라는 것! 각설eglife.tistory.com지난 시간에 복습했던 것들중에 String과 Stringstream 부분은 정말 중요하고, 각종 퀴즈에도 많이 나오니까 잘 숙지해야한다. 이번엔 Container에 대해서 얼른 뭐가 있는지, 특징은 무엇인지 체크를 해보자 1. Vector Vector는 Dynamic-size array로 연속적인 Co..

Review 1 - Basic Standard Library in C++(Cin/out,file I/O, String)

이번엔 C++의 기초 복습이다. 사실 C++이 이름때문에 프로그래밍 언어 중에 제일 끝판왕 격으로 어려운 줄 알았으나, C가 젤 짜치긴 하다;; ㅎㅎ C 하다가 C++ 넘어오면 C++은 양반이라는 것! 각설하고 C++ 복습으로 얼른 넘어가보자~~~~~~ ㅠㅠ C++은 기본적으로, C와 유사한데, 몇 가지 표현 방식이 다르다.  1. 단순 Print를 할 때의 차이#include int main(void){ int num; std::cout > num; std::cout  C의 printf / scanf 모두 C++에선 가볍게 cin / cout으로 처리해버린다. 저 std:: 같은 건 나중에 using namespace std; 로 생략 가능한데, 일단 초창기니까 유지 cin / cout..