Posts by Tag

Post Formats

Post: Link Permalink

less than 1 minute read

This theme supports link posts, made famous by John Gruber. To use, just add link: http://url-you-want-linked to the post’s YAML front matter and you’re done.

Post: Quote

less than 1 minute read

Only one thing is impossible for God: To find any sense in any copyright law on the planet. Mark Twain

Post: Notice

1 minute read

A notice displays information that explains nearby content. Often used to call attention to a particular detail.

Post: Chat

2 minute read

Abbott: Strange as it may seem, they give ball players nowadays very peculiar names.

Post: Standard

4 minute read

All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing...

Post: Modified Date

less than 1 minute read

This post has been updated and should show a modified date if used in a layout.

Back to Top ↑

WantedGameDeveloperCourseSeason2

std::map

less than 1 minute read

1. std::map<keyType, valueType> 키를 통해 접근한다. 몇번째 요소인지 찾는것은 어렵다. 내부적으로 레드-블랙 트리로 구현되어있다. 삽입, 삭제, 검색 모두 O(logN) 시간복잡도를 가진다

Abstract class in C++

less than 1 minute read

1. 추상화 클래스 순수 가상함수(+ 소멸자에 virtual 키워드)를 가지고 있는 클래스 껍데기만 있고 실제 구현은 없다 실제 구현은 해당 클래스를 상속받는 자식 클래스에서 이루어진다 1.1 순수가상함수 함수 뒤에 ‘= 0’ 을 붙여서 만든다

Strategy Pattern

less than 1 minute read

2. Strategy Pattern 어떤 방식으로 하느냐의 액션은 같게, 세부 구현은 다르게할때 사용 상속받는 클래스에서 실제 액션의 구현을 담당한다. 동작을 갈아끼울수 있다

Factory Pattern

less than 1 minute read

1. Factory Pattern 동일한 구조인데 실제 구현이 다를때 팩토리란 곳에서 생성하겠다 책임 소재 명확히 하는데 좋다(생성은 factory클래스가 책임)

std::vector

less than 1 minute read

1. std::vector<type> 동적배열이다: 배열과 흡사하지만 크기가 자동으로 조절된다. 장점(배열의 장점이기도 하다) : 임의접근 : 인덱스를 사용해서 O(1) 시간복잡도로 원소에 접근이 가능하다. 배열의 단점(배열...

Back to Top ↑

C++

std::map

less than 1 minute read

1. std::map<keyType, valueType> 키를 통해 접근한다. 몇번째 요소인지 찾는것은 어렵다. 내부적으로 레드-블랙 트리로 구현되어있다. 삽입, 삭제, 검색 모두 O(logN) 시간복잡도를 가진다

Abstract class in C++

less than 1 minute read

1. 추상화 클래스 순수 가상함수(+ 소멸자에 virtual 키워드)를 가지고 있는 클래스 껍데기만 있고 실제 구현은 없다 실제 구현은 해당 클래스를 상속받는 자식 클래스에서 이루어진다 1.1 순수가상함수 함수 뒤에 ‘= 0’ 을 붙여서 만든다

std::vector

less than 1 minute read

1. std::vector<type> 동적배열이다: 배열과 흡사하지만 크기가 자동으로 조절된다. 장점(배열의 장점이기도 하다) : 임의접근 : 인덱스를 사용해서 O(1) 시간복잡도로 원소에 접근이 가능하다. 배열의 단점(배열...

2025-02-26_CppDailyNote

3 minute read

오전 열거형(Enumeration, Enum) 관련된 상수들의 집합을 의미있는 이름으로 묶어서 표현할 수 있는 데이터타입 enum TileType { EARTH, // 자동으로 0부터 시작이 기본 FOREST = 5, // 이런식으로 숫자 지정 가능 ...

Back to Top ↑

readability

Post: Standard

4 minute read

All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing...

Post: Modified Date

less than 1 minute read

This post has been updated and should show a modified date if used in a layout.

Back to Top ↑

standard

Post: Standard

4 minute read

All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing...

Post: Modified Date

less than 1 minute read

This post has been updated and should show a modified date if used in a layout.

Back to Top ↑

STL

std::map

less than 1 minute read

1. std::map<keyType, valueType> 키를 통해 접근한다. 몇번째 요소인지 찾는것은 어렵다. 내부적으로 레드-블랙 트리로 구현되어있다. 삽입, 삭제, 검색 모두 O(logN) 시간복잡도를 가진다

std::vector

less than 1 minute read

1. std::vector<type> 동적배열이다: 배열과 흡사하지만 크기가 자동으로 조절된다. 장점(배열의 장점이기도 하다) : 임의접근 : 인덱스를 사용해서 O(1) 시간복잡도로 원소에 접근이 가능하다. 배열의 단점(배열...

Back to Top ↑

STL Container

std::map

less than 1 minute read

1. std::map<keyType, valueType> 키를 통해 접근한다. 몇번째 요소인지 찾는것은 어렵다. 내부적으로 레드-블랙 트리로 구현되어있다. 삽입, 삭제, 검색 모두 O(logN) 시간복잡도를 가진다

std::vector

less than 1 minute read

1. std::vector<type> 동적배열이다: 배열과 흡사하지만 크기가 자동으로 조절된다. 장점(배열의 장점이기도 하다) : 임의접근 : 인덱스를 사용해서 O(1) 시간복잡도로 원소에 접근이 가능하다. 배열의 단점(배열...

Back to Top ↑

GOF Design Pattern

Strategy Pattern

less than 1 minute read

2. Strategy Pattern 어떤 방식으로 하느냐의 액션은 같게, 세부 구현은 다르게할때 사용 상속받는 클래스에서 실제 액션의 구현을 담당한다. 동작을 갈아끼울수 있다

Factory Pattern

less than 1 minute read

1. Factory Pattern 동일한 구조인데 실제 구현이 다를때 팩토리란 곳에서 생성하겠다 책임 소재 명확히 하는데 좋다(생성은 factory클래스가 책임)

Back to Top ↑

chat

Post: Chat

2 minute read

Abbott: Strange as it may seem, they give ball players nowadays very peculiar names.

Back to Top ↑

notice

Post: Notice

1 minute read

A notice displays information that explains nearby content. Often used to call attention to a particular detail.

Back to Top ↑

quote

Post: Quote

less than 1 minute read

Only one thing is impossible for God: To find any sense in any copyright law on the planet. Mark Twain

Back to Top ↑

Jekyll

Welcome to Jekyll!

less than 1 minute read

You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different wa...

Back to Top ↑

update

Welcome to Jekyll!

less than 1 minute read

You’ll find this post in your _posts directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different wa...

Back to Top ↑

WantedGameDeveloperCourse

2025-02-26_CppDailyNote

3 minute read

오전 열거형(Enumeration, Enum) 관련된 상수들의 집합을 의미있는 이름으로 묶어서 표현할 수 있는 데이터타입 enum TileType { EARTH, // 자동으로 0부터 시작이 기본 FOREST = 5, // 이런식으로 숫자 지정 가능 ...

Back to Top ↑

Creational Pattern

Factory Pattern

less than 1 minute read

1. Factory Pattern 동일한 구조인데 실제 구현이 다를때 팩토리란 곳에서 생성하겠다 책임 소재 명확히 하는데 좋다(생성은 factory클래스가 책임)

Back to Top ↑

Behavioural Pattern

Strategy Pattern

less than 1 minute read

2. Strategy Pattern 어떤 방식으로 하느냐의 액션은 같게, 세부 구현은 다르게할때 사용 상속받는 클래스에서 실제 액션의 구현을 담당한다. 동작을 갈아끼울수 있다

Back to Top ↑