Translate Queue into Russian. (#278)

This commit is contained in:
Stulov Alex 2018-12-28 17:27:14 +03:00 committed by Oleksii Trekhleb
parent d67db50a3b
commit 9e7ef3680a
2 changed files with 23 additions and 0 deletions

View File

@ -1,5 +1,9 @@
# Queue # Queue
_Read this in other languages:_
[_简体中文_](README.zh-CN.md),
[_Русский_](README.ru-RU.md)
In computer science, a **queue** is a particular kind of abstract data In computer science, a **queue** is a particular kind of abstract data
type or collection in which the entities in the collection are type or collection in which the entities in the collection are
kept in order and the principle (or only) operations on the kept in order and the principle (or only) operations on the

View File

@ -0,0 +1,19 @@
# Очередь
Очередь (англ. queue) - структура данных в информатике, в которой элементы
хранятся в порядке их добавления. Добавление новых элементов(enqueue)
осуществляется в начало списка. А удаление элементов (dequeue)
осуществляется с конца. Таким образом очередь реализует принцип
"первым вошёл - первым вышел" (FIFO). Часто реализуется операция чтения
головного элемента (peek), которая возвращает первый в очереди элемент,
при этом не удаляя его. Очередь является примером линейной структуры
данных или последовательной коллекции.
Иллюстрация работы с очередью.
![Очередь](https://upload.wikimedia.org/wikipedia/commons/5/52/Data_Queue.svg)
## References
- [Wikipedia](https://ru.wikipedia.org/wiki/%D0%9E%D1%87%D0%B5%D1%80%D0%B5%D0%B4%D1%8C_(%D0%BF%D1%80%D0%BE%D0%B3%D1%80%D0%B0%D0%BC%D0%BC%D0%B8%D1%80%D0%BE%D0%B2%D0%B0%D0%BD%D0%B8%D0%B5))
- [YouTube](https://www.youtube.com/watch?v=GRsVMTlBIoE)