From d0c359e990d9f5ed5775a1dcc324c9e9529e1496 Mon Sep 17 00:00:00 2001 From: Sewook Han Date: Wed, 26 Jan 2022 01:54:01 +0900 Subject: [PATCH] Add Korean translation (#752) * Add Korean translation * Add link to Korean translation in Queue README. --- src/data-structures/queue/README.ko-KR.md | 21 +++++++++++++++++++++ src/data-structures/queue/README.md | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 src/data-structures/queue/README.ko-KR.md diff --git a/src/data-structures/queue/README.ko-KR.md b/src/data-structures/queue/README.ko-KR.md new file mode 100644 index 00000000..204f6b9b --- /dev/null +++ b/src/data-structures/queue/README.ko-KR.md @@ -0,0 +1,21 @@ +# Queue + +_Read this in other languages:_ +[_简体中文_](README.zh-CN.md), +[_Русский_](README.ru-RU.md), +[_日本語_](README.ja-JP.md), +[_Français_](README.fr-FR.md), +[_Português_](README.pt-BR.md) + +컴퓨터 공학에서 **큐**는 일종의 추상 데이터 타입이자 컬렉션입니다. 큐 내부의 엔터티들은 순서를 유지하며 컬렉션의 가장 뒷 부분에 엔터티를 추가하는 인큐(enqueue), 컬렉션의 가장 앞에 위치한 엔터티를 제거하는 디큐(dequeue) 작업을 수행합니다. 이것은 큐를 선입선출 자료 구조로 만듭니다. 선입선출 자료 구조에서는, 추가된 첫 번째 요소가 가장 먼저 제거되는 요소가 됩니다. 이는 새로운 요소가 추가되면 이전에 추가되었던 모든 요소들을 제거해야 새로운 요소를 제거할 수 있다는것과 같은 의미입니다. 또한 큐의 가장 앞에 위치한 요소를 반환하기 위한 작업이 입력되면 디큐 작업 없이 해당 요소를 반환합니다. + +큐는 선형 자료 구조의 예시이며, 더 추상적으로는 순차적인 컬렉션입니다. + +선입선출 자료 구조인 큐를 나타내면 다음과 같습니다. + +![Queue](https://upload.wikimedia.org/wikipedia/commons/5/52/Data_Queue.svg) + +## 참고 + +- [Wikipedia](https://en.wikipedia.org/wiki/Queue_(abstract_data_type)) +- [YouTube](https://www.youtube.com/watch?v=wjI1WNcIntg&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8&index=3&) diff --git a/src/data-structures/queue/README.md b/src/data-structures/queue/README.md index e6c9bc2d..86046d8f 100644 --- a/src/data-structures/queue/README.md +++ b/src/data-structures/queue/README.md @@ -5,7 +5,7 @@ _Read this in other languages:_ [_Русский_](README.ru-RU.md), [_日本語_](README.ja-JP.md), [_Français_](README.fr-FR.md), -[_Português_](README.pt-BR.md) +[_Português_](README.pt-BR.md), [_한국어_](README.ko-KR.md) In computer science, a **queue** is a particular kind of abstract data type or collection in which the entities in the collection are