Skip to content

Commit 802557f

Browse files
committed
Update translation for Bubble Sort.
1 parent 82cf0e6 commit 802557f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/algorithms/sorting/bubble-sort/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Bubble Sort
22

3+
_Read this in other languages:_
4+
[_Português_](README.pt-BR.md)
5+
36
Bubble sort, sometimes referred to as sinking sort, is a
47
simple sorting algorithm that repeatedly steps through
58
the list to be sorted, compares each pair of adjacent

src/algorithms/sorting/bubble-sort/README-ptbr.md renamed to src/algorithms/sorting/bubble-sort/README.pt-BR.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
O bubble sort, ou ordenação por flutuação (literalmente "por bolha"), é um algoritmo de ordenação dos mais simples. A ideia é percorrer o vetor diversas vezes, e a cada passagem fazer flutuar para o topo o maior elemento da sequência. Essa movimentação lembra a forma como as bolhas em um tanque de água procuram seu próprio nível, e disso vem o nome do algoritmo.
44

5-
![Algorithm Visualization](https://pt.wikipedia.org/wiki/Ficheiro:Bubble_sort_animation.gif)
5+
![Algorithm Visualization](https://upload.wikimedia.org/wikipedia/commons/c/c8/Bubble-sort-example-300px.gif)
66

77
## Complexity
88

@@ -13,4 +13,5 @@ O bubble sort, ou ordenação por flutuação (literalmente "por bolha"), é um
1313
## References
1414

1515
- [Wikipedia](https://pt.wikipedia.org/wiki/Bubble_sort)
16+
- [YouTube](https://www.youtube.com/watch?v=6Gv8vg0kcHc&index=27&t=0s&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)
1617

0 commit comments

Comments
 (0)