Skip to content

Commit d0c359e

Browse files
authored
Add Korean translation (trekhleb#752)
* Add Korean translation * Add link to Korean translation in Queue README.
1 parent d11f7fa commit d0c359e

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Queue
2+
3+
_Read this in other languages:_
4+
[_简体中文_](README.zh-CN.md),
5+
[_Русский_](README.ru-RU.md),
6+
[_日本語_](README.ja-JP.md),
7+
[_Français_](README.fr-FR.md),
8+
[_Português_](README.pt-BR.md)
9+
10+
컴퓨터 공학에서 ****는 일종의 추상 데이터 타입이자 컬렉션입니다. 큐 내부의 엔터티들은 순서를 유지하며 컬렉션의 가장 뒷 부분에 엔터티를 추가하는 인큐(enqueue), 컬렉션의 가장 앞에 위치한 엔터티를 제거하는 디큐(dequeue) 작업을 수행합니다. 이것은 큐를 선입선출 자료 구조로 만듭니다. 선입선출 자료 구조에서는, 추가된 첫 번째 요소가 가장 먼저 제거되는 요소가 됩니다. 이는 새로운 요소가 추가되면 이전에 추가되었던 모든 요소들을 제거해야 새로운 요소를 제거할 수 있다는것과 같은 의미입니다. 또한 큐의 가장 앞에 위치한 요소를 반환하기 위한 작업이 입력되면 디큐 작업 없이 해당 요소를 반환합니다.
11+
12+
큐는 선형 자료 구조의 예시이며, 더 추상적으로는 순차적인 컬렉션입니다.
13+
14+
선입선출 자료 구조인 큐를 나타내면 다음과 같습니다.
15+
16+
![Queue](https://upload.wikimedia.org/wikipedia/commons/5/52/Data_Queue.svg)
17+
18+
## 참고
19+
20+
- [Wikipedia](https://en.wikipedia.org/wiki/Queue_(abstract_data_type))
21+
- [YouTube](https://www.youtube.com/watch?v=wjI1WNcIntg&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=3&)

src/data-structures/queue/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ _Read this in other languages:_
55
[_Русский_](README.ru-RU.md),
66
[_日本語_](README.ja-JP.md),
77
[_Français_](README.fr-FR.md),
8-
[_Português_](README.pt-BR.md)
8+
[_Português_](README.pt-BR.md), [_한국어_](README.ko-KR.md)
99

1010
In computer science, a **queue** is a particular kind of abstract data
1111
type or collection in which the entities in the collection are

0 commit comments

Comments
 (0)