Skip to content

Commit 10b79ee

Browse files
committedJul 24, 2022
Update Stack images.
1 parent 58491c7 commit 10b79ee

File tree

8 files changed

+30
-16
lines changed

8 files changed

+30
-16
lines changed
 

‎src/data-structures/stack/README.fr-FR.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ autres articles en premier.
2020

2121
Représentation simple de l'éxecution d'une pile avec des opérations empiler (push) et dépiler (pop).
2222

23-
![Stack](https://upload.wikimedia.org/wikipedia/commons/b/b4/Lifo_stack.png)
23+
![Stack](./images/stack.jpeg)
24+
25+
*Made with [okso.app](https://okso.app)*
2426

2527
## Références
2628

‎src/data-structures/stack/README.ja-JP.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99

1010
プッシュとポップの例
1111

12-
![Stack](https://upload.wikimedia.org/wikipedia/commons/b/b4/Lifo_stack.png)
12+
![Stack](./images/stack.jpeg)
13+
14+
*Made with [okso.app](https://okso.app)*
1315

1416
## 参考
1517

‎src/data-structures/stack/README.ko-KR.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ _Read this in other languages:_
1616

1717
다음은 push와 pop 연산을 실행하는 간단한 스택의 실행입니다.
1818

19-
![Stack](https://upload.wikimedia.org/wikipedia/commons/b/b4/Lifo_stack.png)
19+
![Stack](./images/stack.jpeg)
20+
21+
*Made with [okso.app](https://okso.app)*
2022

2123
## 참조
2224

‎src/data-structures/stack/README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,26 @@ _Read this in other languages:_
88
[_Português_](README.pt-BR.md),
99
[_한국어_](README.ko-KR.md)
1010

11-
In computer science, a **stack** is an abstract data type that serves
11+
In computer science, a **stack** is an abstract data type that serves
1212
as a collection of elements, with two principal operations:
1313

1414
* **push**, which adds an element to the collection, and
1515
* **pop**, which removes the most recently added element that was not yet removed.
1616

17-
The order in which elements come off a stack gives rise to its
18-
alternative name, LIFO (last in, first out). Additionally, a
19-
peek operation may give access to the top without modifying
20-
the stack. The name "stack" for this type of structure comes
21-
from the analogy to a set of physical items stacked on top of
22-
each other, which makes it easy to take an item off the top
23-
of the stack, while getting to an item deeper in the stack
17+
The order in which elements come off a stack gives rise to its
18+
alternative name, LIFO (last in, first out). Additionally, a
19+
peek operation may give access to the top without modifying
20+
the stack. The name "stack" for this type of structure comes
21+
from the analogy to a set of physical items stacked on top of
22+
each other, which makes it easy to take an item off the top
23+
of the stack, while getting to an item deeper in the stack
2424
may require taking off multiple other items first.
2525

2626
Simple representation of a stack runtime with push and pop operations.
2727

28-
![Stack](https://upload.wikimedia.org/wikipedia/commons/b/b4/Lifo_stack.png)
28+
![Stack](./images/stack.jpeg)
29+
30+
*Made with [okso.app](https://okso.app)*
2931

3032
## References
3133

‎src/data-structures/stack/README.pt-BR.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ vários outros itens primeiro.
1818
Representação simples de um tempo de execução de pilha com operações
1919
_push_ e _pop_.
2020

21-
![Stack](https://upload.wikimedia.org/wikipedia/commons/b/b4/Lifo_stack.png)
21+
![Stack](./images/stack.jpeg)
22+
23+
*Made with [okso.app](https://okso.app)*
2224

2325
## Referências
2426

‎src/data-structures/stack/README.ru-RU.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
* **удаление (pop)**, последнего добавленного элемента.
99

1010
Дополнительная операция чтения головного элемента (peek) даёт доступ
11-
к последнему элементу стека без изменения самого стека.
11+
к последнему элементу стека без изменения самого стека.
1212

1313
Чаще всего принцип работы стека сравнивают со стопкой тарелок: чтобы взять вторую
1414
сверху, нужно снять верхнюю.
1515

1616
Иллюстрация работы со стеком.
1717

18-
![Стек](https://upload.wikimedia.org/wikipedia/commons/b/b4/Lifo_stack.png)
18+
![Stack](./images/stack.jpeg)
19+
20+
*Made with [okso.app](https://okso.app)*
1921

2022
## Ссылки
2123

‎src/data-structures/stack/README.zh-CN.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313

1414
栈的 push 和 pop 操作的示意
1515

16-
![Stack](https://upload.wikimedia.org/wikipedia/commons/b/b4/Lifo_stack.png)
16+
![Stack](./images/stack.jpeg)
17+
18+
*Made with [okso.app](https://okso.app)*
1719

1820
## 参考
1921

127 KB
Loading

0 commit comments

Comments
 (0)
Please sign in to comment.