Skip to content

Commit 9e7ef36

Browse files
Stulov Alextrekhleb
Stulov Alex
authored andcommitted
Translate Queue into Russian. (trekhleb#278)
1 parent d67db50 commit 9e7ef36

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

Diff for: src/data-structures/queue/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Queue
22

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

Diff for: src/data-structures/queue/README.ru-RU.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Очередь
2+
3+
Очередь (англ. queue) - структура данных в информатике, в которой элементы
4+
хранятся в порядке их добавления. Добавление новых элементов(enqueue)
5+
осуществляется в начало списка. А удаление элементов (dequeue)
6+
осуществляется с конца. Таким образом очередь реализует принцип
7+
"первым вошёл - первым вышел" (FIFO). Часто реализуется операция чтения
8+
головного элемента (peek), которая возвращает первый в очереди элемент,
9+
при этом не удаляя его. Очередь является примером линейной структуры
10+
данных или последовательной коллекции.
11+
12+
Иллюстрация работы с очередью.
13+
14+
![Очередь](https://upload.wikimedia.org/wikipedia/commons/5/52/Data_Queue.svg)
15+
16+
## References
17+
18+
- [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))
19+
- [YouTube](https://www.youtube.com/watch?v=GRsVMTlBIoE)

0 commit comments

Comments
 (0)