Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Seogeurim/CS-study
๐ ์ง์ ํ ์ปดํจํฐ๊ณตํ๋๊ฐ ๋๊ธฐ ์ํ ์ฐ๋ฆฌ๋ค์ ์ง์ ์ ๋ฆฌ ๊ณต๊ฐ ๐ฅ
https://github.com/Seogeurim/CS-study
algorithm computer-science
Last synced: 27 days ago
JSON representation
๐ ์ง์ ํ ์ปดํจํฐ๊ณตํ๋๊ฐ ๋๊ธฐ ์ํ ์ฐ๋ฆฌ๋ค์ ์ง์ ์ ๋ฆฌ ๊ณต๊ฐ ๐ฅ
- Host: GitHub
- URL: https://github.com/Seogeurim/CS-study
- Owner: Seogeurim
- License: mit
- Created: 2020-12-30T05:25:24.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-14T04:45:58.000Z (almost 2 years ago)
- Last Synced: 2024-11-12T14:42:17.595Z (about 1 month ago)
- Topics: algorithm, computer-science
- Language: Java
- Homepage:
- Size: 19.1 MB
- Stars: 1,186
- Watchers: 9
- Forks: 115
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-repositories - Seogeurim / CS-study
README
# Basic Knowledge of Computer Science
> Since 2020.09.04
## Table of Contents
- [About](#about)
- [Repository Rule](#repository-rule)
- [Collaborator](#collaborator)
- [Reference](#reference)
- [Data Structure (์๋ฃ๊ตฌ์กฐ)](#data-structure-์๋ฃ๊ตฌ์กฐ)
- [Algorithm (์๊ณ ๋ฆฌ์ฆ)](#algorithm-์๊ณ ๋ฆฌ์ฆ)
- [Operating System (์ด์์ฒด์ )](#operating-system-์ด์์ฒด์ )
- [Database (๋ฐ์ดํฐ๋ฒ ์ด์ค)](#database-๋ฐ์ดํฐ๋ฒ ์ด์ค)
- [Network (๋คํธ์ํฌ)](#network-๋คํธ์ํฌ)
- [Design Pattern (๋์์ธ ํจํด)](#design-pattern-๋์์ธ-ํจํด)
- [Software Engineering (์ํํธ์จ์ด ๊ณตํ)](#software-engineering-์ํํธ์จ์ด-๊ณตํ)
- [Language](#language)## About
์๊ณ ๋ฆฌ์ฆ๊ณผ CS ๊ธฐ์ด ์ง์์ ์ด๋ก ๋ถํฐ ๊ตฌํ๊น์ง, ์ปดํจํฐ๊ณตํ ์ ๊ณต์ ๋ฐ ์๋น ๊ฐ๋ฐ์๋ก์ ์์์ผ ํ ํ์ ์ ๊ณต ์ง์๋ค์ ๊ณต๋ถํ๊ณ ๊ธฐ๋กํ ์ ์ฅ์์ ๋๋ค. ๋งค์ฃผ ์คํฐ๋ํ ํ์ ์ธ **๋ฐํ ์๋ฃ**๋ค์ด ์ ๋ก๋๋์ด ์์ผ๋ฉฐ, ๋ ๋์๊ฐ **๊ธ**๋ก, **์ง์์๋ต** ํํ๋ก ๋ฌธ์ํํ๋ ๊ฒ์ ๋ชฉํ๋ก ํฉ๋๋ค.
### Repository Rule
> [CS-study Repo ๊ฐ์ด๋](https://www.notion.so/CS-study-Repo-3428a7e4213345ffa08362c7abea8528)
- **์ฃผ์ ๋ณ ์ ๋ฆฌ** : ์ด๋ก ์ ๋ฆฌ, ๊ตฌํ, ์๋ฃ์ ๋ก๋, ์ง์์๋ต
- **Commit convention rule** : [๋์ฃผ์ ] ์์ฃผ์ ๋ถ๋ฅ(์ด๋ก ์ ๋ฆฌ/๊ตฌํ/...) _ex) [DataStructure] Stack ์๋ฃ์ ๋ฆฌ_
- **Branch naming convention** : ๋์ฃผ์ /๋๋ค์ _ex) DataStructure/Nickname_### Collaborator
### Reference
- [JaeYeopHan/Interview_Question_for_Beginner](https://github.com/JaeYeopHan/Interview_Question_for_Beginner)
- [gyoogle/tech-interview-for-developer](https://github.com/gyoogle/tech-interview-for-developer)
- [WeareSoft/tech-interview](https://github.com/WeareSoft/tech-interview)
- [jobhope/TechnicalNote](https://github.com/jobhope/TechnicalNote)## Data Structure (์๋ฃ๊ตฌ์กฐ)
### [๐ ์ ๋ฆฌ๋ ธํธ](./contents/data-structure)
#### ๊ธฐ๋ณธ ์๋ฃ ๊ตฌ์กฐ
- Array
- Linked List
- Stack
- Queue
- Tree
- Binary Tree
- Graph#### ์์ฉ ์๋ฃ ๊ตฌ์กฐ
- Deque
- Heap & Priority Queue
- Indexed Tree (Segment Tree)
- Trie[๐ ๋ชฉ์ฐจ๋ก ๋์๊ฐ๊ธฐ](#table-of-contents)
## Algorithm (์๊ณ ๋ฆฌ์ฆ)
### [๐ ์ ๋ฆฌ๋ ธํธ](./contents/algorithm)
#### ์๊ณ ๋ฆฌ์ฆ ๊ธฐ๋ณธ
- ์๊ฐ๋ณต์ก๋์ ๊ณต๊ฐ๋ณต์ก๋
- ์์ ํ์ ์๊ณ ๋ฆฌ์ฆ (Brute Force)
- DFS์ BFS
- ์์ด, ์กฐํฉ, ๋ถ๋ถ์งํฉ
- ๋ฐฑํธ๋ํน (Backtracking)
- ๋ถํ ์ ๋ณต๋ฒ (Divide and Conquer)
- ํ์ ์๊ณ ๋ฆฌ์ฆ (Greedy)
- ๋์ ๊ณํ๋ฒ (Dynamic Programming)#### ์๊ณ ๋ฆฌ์ฆ ์์ฉ
- ์ ๋ ฌ ์๊ณ ๋ฆฌ์ฆ
- ๊ทธ๋ํ
- ์ต๋จ ๊ฒฝ๋ก ์๊ณ ๋ฆฌ์ฆ
- Union Find & Kruskal
- ๋ ํฌ์ธํฐ (two-pointer)
- ๋ฌธ์์ด ์ฒ๋ฆฌ ์๊ณ ๋ฆฌ์ฆ
- KMP ์๊ณ ๋ฆฌ์ฆ[๐ ๋ชฉ์ฐจ๋ก ๋์๊ฐ๊ธฐ](#table-of-contents)
## Operating System (์ด์์ฒด์ )
### [๐ ์ ๋ฆฌ๋ ธํธ](./contents/operating-system)
- ํ๋ก์ธ์ค์ ์ค๋ ๋
- ๋ฉํฐ ํ๋ก์ธ์ค์ ๋ฉํฐ ์ค๋ ๋
- ํ๋ก์ธ์ค ์ค์ผ์ค๋ง
- CPU ์ค์ผ์ค๋ง
- ๋๊ธฐ์ ๋น๋๊ธฐ์ ์ฐจ์ด
- ํ๋ก์ธ์ค ๋๊ธฐํ
- ๋ฉ๋ชจ๋ฆฌ ๊ด๋ฆฌ ์ ๋ต
- ๊ฐ์ ๋ฉ๋ชจ๋ฆฌ
- ์บ์[๐ ๋ชฉ์ฐจ๋ก ๋์๊ฐ๊ธฐ](#table-of-contents)
## Database (๋ฐ์ดํฐ๋ฒ ์ด์ค)
### [๐ ์ ๋ฆฌ๋ ธํธ](./contents/database)
- ๋ฐ์ดํฐ๋ฒ ์ด์ค
- ์ ๊ทํ
- Index
- Transaction
- NoSQL[๐ ๋ชฉ์ฐจ๋ก ๋์๊ฐ๊ธฐ](#table-of-contents)
## Network (๋คํธ์ํฌ)
### [๐ ์ ๋ฆฌ๋ ธํธ](./contents/network)
- OSI 7 ๊ณ์ธต
- TCP 3-way-handshake & 4-way-handshake
- TCP ์ UDP
- HTTP ์์ฒญ ๋ฐฉ์ - GET, POST
- HTTP ์ HTTPS
- DNS round robin ๋ฐฉ์
- ์น ํต์ ์ ํฐ ํ๋ฆ[๐ ๋ชฉ์ฐจ๋ก ๋์๊ฐ๊ธฐ](#table-of-contents)
## Design Pattern (๋์์ธ ํจํด)
### [๐ ์ ๋ฆฌ๋ ธํธ](./contents/design-pattern)
- ๋์์ธ ํจํด์ ๊ฐ๋ ๊ณผ ์ข ๋ฅ
- Singleton ํจํด
- Factory ํจํด
- MVC ํจํด[๐ ๋ชฉ์ฐจ๋ก ๋์๊ฐ๊ธฐ](#table-of-contents)
## Software Engineering (์ํํธ์จ์ด ๊ณตํ)
### [๐ ์ ๋ฆฌ๋ ธํธ](./contents/software-engineering)
- ํ๋ก๊ทธ๋๋ฐ ํจ๋ฌ๋ค์
- ๋ช ๋ นํ ํ๋ก๊ทธ๋๋ฐ vs ์ ์ธํ ํ๋ก๊ทธ๋๋ฐ
- ํจ์ํ ํ๋ก๊ทธ๋๋ฐ
- ๊ฐ์ฒด์งํฅ ํ๋ก๊ทธ๋๋ฐ
- ์ ์์ผ ๊ฐ๋ฐ ํ๋ก์ธ์ค[๐ ๋ชฉ์ฐจ๋ก ๋์๊ฐ๊ธฐ](#table-of-contents)
## Language
### [๐ ์ ๋ฆฌ๋ ธํธ](./contents/language)
- Java
- C++[๐ ๋ชฉ์ฐจ๋ก ๋์๊ฐ๊ธฐ](#table-of-contents)