mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-12-26 15:11:16 +08:00
Translate Queue into Russian. (#278)
This commit is contained in:
parent
d67db50a3b
commit
9e7ef3680a
@ -1,5 +1,9 @@
|
||||
# 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
|
||||
type or collection in which the entities in the collection are
|
||||
kept in order and the principle (or only) operations on the
|
||||
|
19
src/data-structures/queue/README.ru-RU.md
Normal file
19
src/data-structures/queue/README.ru-RU.md
Normal 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)
|
Loading…
Reference in New Issue
Block a user