Eat Study Love

먹고 공부하고 사랑하라

SW 만학도 80

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..

Review 6 - Linked list in C

https://eglife.tistory.com/79 Review 5 - Dynamic(Structure) in Chttps://eglife.tistory.com/76 Review 4 - File I / O in Chttps://eglife.tistory.com/71 Review 3 - Pointer & Array in Chttps://eglife.tistory.com/70 Review 2 - Control Structures / Functions in Chttps://eglife.tistory.com/69 Review 1 - C programming basieglife.tistory.comStack은 Array 형태, Heap은 위에서 아래로 내려오는 memory이고(memory주소가 작아지는 방향) ..

SW 만학도/C 2024.07.10

Review 11 - Data Indexed Array, Hash in Python

https://eglife.tistory.com/80 Review 10 - 각종 Tree / Graph Traversals in Pythonhttps://eglife.tistory.com/78 Review 9 - Queues & Stackshttps://eglife.tistory.com/77 Review 8 - Python Data Structurehttps://eglife.tistory.com/75 Review 7 - Python Algorithm design & Testing & Debugginghttps://eglife.tistory.com/74 Review 6 - Pythoneglife.tistory.com 대망의 파이썬 마지막부분이다. 아 정말 쉽지 않은 여정이다. Graph vs Tree : ..

SW 만학도/Python 2024.07.10

Review 10 - 각종 Tree / Graph Traversals in Python

https://eglife.tistory.com/78 Review 9 - Queues & Stackshttps://eglife.tistory.com/77 Review 8 - Python Data Structurehttps://eglife.tistory.com/75 Review 7 - Python Algorithm design & Testing & Debugginghttps://eglife.tistory.com/74 Review 6 - Python Recursion & Merge Sorthttps://eglife.tistory.com/73 Revieglife.tistory.com끝을 향해 달려가는 Python Review 사실상 이 Chapter에서 다룰 내용을 다루기 위해 지금껏 복습해왔다고 해도 과언이..

SW 만학도/Python 2024.07.09

Review 5 - Dynamic(Structure) in C

https://eglife.tistory.com/76 Review 4 - File I / O in Chttps://eglife.tistory.com/71 Review 3 - Pointer & Array in Chttps://eglife.tistory.com/70 Review 2 - Control Structures / Functions in Chttps://eglife.tistory.com/69 Review 1 - C programming basics이번엔 C 언어에 대한 복습이다. Python, C,eglife.tistory.com1. Structure C에선 Class가 없고 Structure만 있다.(C++에 Class가 있음)단, Structure에는 Method가 없다. Python의 List는..

SW 만학도/C 2024.07.08

Review 9 - Queues & Stacks

https://eglife.tistory.com/77 Review 8 - Python Data Structurehttps://eglife.tistory.com/75 Review 7 - Python Algorithm design & Testing & Debugginghttps://eglife.tistory.com/74 Review 6 - Python Recursion & Merge Sorthttps://eglife.tistory.com/73 Review 6 - Python Search(Linear / Binary) & Sort(Selection / Inserteglife.tistory.com 사실 지난 시간에 큐와 스택을 다 다뤄보려했지만, 분량 조절 실패 간단히 Queue, Stack을 다루고 넘어가보자..

SW 만학도/Python 2024.07.08

Review 8 - Python Data Structure

https://eglife.tistory.com/75 Review 7 - Python Algorithm design & Testing & Debugginghttps://eglife.tistory.com/74 Review 6 - Python Recursion & Merge Sorthttps://eglife.tistory.com/73 Review 6 - Python Search(Linear / Binary) & Sort(Selection / Insertion)https://eglife.tistory.com/72 Review 5 - Python OOP(Objected Oriented Programming)eglife.tistory.com의사소통을 할 때, 못 알아 들었으면 못 알아 들었다고 확실히 말하자. 이..

SW 만학도/Python 2024.07.08