Skip to content

Commit ff7ae63

Browse files
author
Keonil Kim
authored
Merge pull request #22 from Hanney-Ryu/master
translated some parts
2 parents 62d2fca + 19df006 commit ff7ae63

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

translations/README-ko.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -499,16 +499,16 @@ OR:
499499

500500
앞에서도 언급했듯이 나는 불필요하게 많은 것을 공부하려고 했고, 내 카드의 내용들은 어셈블리 언어와 Python의 자잘한 지식들부터 기계 학습과 통계학까지 넘나들게 되었다. 결국 구글이 요구하는 것보다 훨씬 멀리 가버리고 말았다.
501501

502-
**Note on flashcards:** The first time you recognize you know the answer, don't mark it as known. You have to see the
503-
same card and answer it several times correctly before you really know it. Repetition will put that knowledge deeper in
504-
your brain.
502+
**flashcard에 대한 참고사항:** 답을 할 수 있더라도 처음부터 안다고 표시하지 말자. 정확히 알기 전까지는 같은 카드를 보고 여러 번 답변할 수 있어야한다.
503+
반복 학습을 통해 해당 지식은 당신의 뇌에 깊이 각인될 것이다.
505504

506505

507-
An alternative to using my flashcard site is [Anki](http://ankisrs.net/), which has been recommended to me numerous times. It uses a repetition system to help you remember.
508506

509-
It's user-friendly, available on all platforms and has a cloud sync system. It costs $25 on iOS but is free on other platforms.
507+
나의 flashcard site를 사용하는 대신 [Anki](http://ankisrs.net/)를 사용해도 된다. 나는 이 것을 여러 번 추천받았다. 이것은 당신이 기억하는 것을 돕기 위해 반복적인 시스템을 사용한다.
510508

511-
My flashcard database in Anki format: https://ankiweb.net/shared/info/25173560 (thanks [@xiewenya](https://github.com/xiewenya))
509+
이것은 사용자 친화적이며, 모든 플랫폼에서 사용가능하다. 또한 클라우드 동기화 시스템을 제공한다. 이것은 iOS에서는 $25이지만 다른 플랫폼에서는 무료로 사용 가능하다.
510+
511+
Anki format의 내 flashcard 데이터베이스: https://ankiweb.net/shared/info/25173560 (thanks [@xiewenya](https://github.com/xiewenya))
512512

513513
### 3. 검토, 검토, 검토
514514

@@ -920,28 +920,28 @@ My flashcard database in Anki format: https://ankiweb.net/shared/info/25173560 (
920920

921921
If you need more detail on this subject, see "Sorting" section in [Additional Detail on Some Subjects](#additional-detail-on-some-subjects)
922922

923-
## Graphs
923+
## 그래프
924924

925-
Graphs can be used to represent many problems in computer science, so this section is long, like trees and sorting were.
925+
그래프는 컴퓨터 과학의 여러 문제들을 표현하는 데 사용할 수 있다. 때문에 이 섹션은 트리나 정렬 섹션처럼 길다.
926926

927-
- Notes from Yegge:
928-
- There are three basic ways to represent a graph in memory:
929-
- objects and pointers
930-
- matrix
931-
- adjacency list
932-
- Familiarize yourself with each representation and its pros & cons
933-
- BFS and DFS - know their computational complexity, their tradeoffs, and how to implement them in real code
934-
- When asked a question, look for a graph-based solution first, then move on if none.
927+
- Yegge의 노트:
928+
- 메모리에 그래프를 표시하는 세 가지 기본 방법이 있다:
929+
- 오브젝트와 포인터
930+
- 행렬
931+
- 인접 리스트
932+
- 각각의 표현과 장단점을 숙지하라.
933+
- 넓이우선탐색(BFS)와 깊이우선탐색(DFS) - 계산상의 복잡성, 장단점, 실제 코드로 구현하는 방법을 알아야 한다.
934+
- 질문을 받을 시 먼저 그래프 기반 솔루션을 찾고, 없을 경우에 다른 솔루션으로 넘어가라.
935935

936-
- [ ] Skiena Lectures - great intro:
936+
- [ ] Skiena의 강좌 - 훌륭한 인트로:
937937
- [ ] [CSE373 2012 - Lecture 11 - Graph Data Structures (video)](https://www.youtube.com/watch?v=OiXxhDrFruw&list=PLOtl7M3yp-DV69F32zdK7YJcNXpTunF2b&index=11)
938938
- [ ] [CSE373 2012 - Lecture 12 - Breadth-First Search (video)](https://www.youtube.com/watch?v=g5vF8jscteo&list=PLOtl7M3yp-DV69F32zdK7YJcNXpTunF2b&index=12)
939939
- [ ] [CSE373 2012 - Lecture 13 - Graph Algorithms (video)](https://www.youtube.com/watch?v=S23W6eTcqdY&list=PLOtl7M3yp-DV69F32zdK7YJcNXpTunF2b&index=13)
940940
- [ ] [CSE373 2012 - Lecture 14 - Graph Algorithms (con't) (video)](https://www.youtube.com/watch?v=WitPBKGV0HY&index=14&list=PLOtl7M3yp-DV69F32zdK7YJcNXpTunF2b)
941941
- [ ] [CSE373 2012 - Lecture 15 - Graph Algorithms (con't 2) (video)](https://www.youtube.com/watch?v=ia1L30l7OIg&index=15&list=PLOtl7M3yp-DV69F32zdK7YJcNXpTunF2b)
942942
- [ ] [CSE373 2012 - Lecture 16 - Graph Algorithms (con't 3) (video)](https://www.youtube.com/watch?v=jgDOQq6iWy8&index=16&list=PLOtl7M3yp-DV69F32zdK7YJcNXpTunF2b)
943943

944-
- [ ] Graphs (review and more):
944+
- [ ] 그래프 (검토, 그 외 여러가지):
945945

946946
- [ ] [6.006 Single-Source Shortest Paths Problem (video)](https://www.youtube.com/watch?v=Aa2sqUhIn-E&index=15&list=PLUl4u3cNGP61Oq3tWYp6V_F-5jb5L2iHb)
947947
- [ ] [6.006 Dijkstra (video)](https://www.youtube.com/watch?v=2E7MmKv0Y24&index=16&list=PLUl4u3cNGP61Oq3tWYp6V_F-5jb5L2iHb)
@@ -959,14 +959,14 @@ Graphs can be used to represent many problems in computer science, so this secti
959959
- Full Coursera Course:
960960
- [ ] [Algorithms on Graphs (video)](https://www.coursera.org/learn/algorithms-on-graphs/home/welcome)
961961

962-
- Yegge: If you get a chance, try to study up on fancier algorithms:
962+
- Yegge: 기회가 된다면, 더 멋진 알고리즘을 연구해 보라:
963963
- [ ] Dijkstra's algorithm - see above - 6.006
964964
- [ ] A*
965965
- [ ] [A Search Algorithm](https://en.wikipedia.org/wiki/A*_search_algorithm)
966966
- [ ] [A* Pathfinding Tutorial (video)](https://www.youtube.com/watch?v=KNXfSOx4eEE)
967967
- [ ] [A* Pathfinding (E01: algorithm explanation) (video)](https://www.youtube.com/watch?v=-L-WgKMFuhE)
968968

969-
- I'll implement:
969+
- 내가 구현할 것:
970970
- [ ] DFS with adjacency list (recursive)
971971
- [ ] DFS with adjacency list (iterative with stack)
972972
- [ ] DFS with adjacency matrix (recursive)
@@ -982,7 +982,7 @@ Graphs can be used to represent many problems in computer science, so this secti
982982
- [ ] list strongly connected components
983983
- [ ] check for bipartite graph
984984

985-
You'll get more graph practice in Skiena's book (see Books section below) and the interview books
985+
Skiena의 책(아래의 책 섹션 참조)과 인터뷰 책에서 더 많은 그래프 실습을 할 수 있다.
986986

987987
## Even More Knowledge
988988

@@ -1345,14 +1345,14 @@ You'll get more graph practice in Skiena's book (see Books section below) and th
13451345

13461346
---
13471347

1348-
## Final Review
1348+
## 최종 검토
13491349

1350-
This section will have shorter videos that you can watch pretty quickly to review most of the important concepts.
1351-
It's nice if you want a refresher often.
1350+
이 섹션에는 중요한 개념들을 빠르게 검토할 수 있는 짧은 영상들이 포함되어 있다.
1351+
복습을 하고자 한다면, 이 영상들이 도움이 될 것이다.
13521352

1353-
- [ ] Series of 2-3 minutes short subject videos (23 videos)
1353+
- [ ] 2-3분 분량의 주제별 짧은 영상 시리즈 (23 videos)
13541354
- [Videos](https://www.youtube.com/watch?v=r4r1DZcx1cM&list=PLmVb1OknmNJuC5POdcDv5oCS7_OUkDgpj&index=22)
1355-
- [ ] Series of 2-5 minutes short subject videos - Michael Sambol (18 videos):
1355+
- [ ] 2-5분 분량의 주제별 짧은 영상 시리즈 - Michael Sambol (18 videos):
13561356
- [Videos](https://www.youtube.com/channel/UCzDJwLWoYCUQowF_nG3m5OQ)
13571357
- [ ] [Sedgewick Videos - Algorithms I](https://www.youtube.com/user/algorithmscourses/playlists?shelf_id=2&view=50&sort=dd)
13581358
- [ ] [01. Union-Find](https://www.youtube.com/watch?v=8mYfZeHtdNc&list=PLe-ggMe31CTexoNYnMhbHaWhQ0dvcy43t)

0 commit comments

Comments
 (0)