From 802557f1ac83fa299613a9e5332096547712bf6a Mon Sep 17 00:00:00 2001 From: Oleksii Trekhleb Date: Tue, 15 Dec 2020 18:56:09 +0100 Subject: [PATCH] Update translation for Bubble Sort. --- src/algorithms/sorting/bubble-sort/README.md | 3 +++ .../sorting/bubble-sort/{README-ptbr.md => README.pt-BR.md} | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) rename src/algorithms/sorting/bubble-sort/{README-ptbr.md => README.pt-BR.md} (79%) diff --git a/src/algorithms/sorting/bubble-sort/README.md b/src/algorithms/sorting/bubble-sort/README.md index ca784fad..596d4006 100644 --- a/src/algorithms/sorting/bubble-sort/README.md +++ b/src/algorithms/sorting/bubble-sort/README.md @@ -1,5 +1,8 @@ # Bubble Sort +_Read this in other languages:_ +[_Português_](README.pt-BR.md) + Bubble sort, sometimes referred to as sinking sort, is a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent diff --git a/src/algorithms/sorting/bubble-sort/README-ptbr.md b/src/algorithms/sorting/bubble-sort/README.pt-BR.md similarity index 79% rename from src/algorithms/sorting/bubble-sort/README-ptbr.md rename to src/algorithms/sorting/bubble-sort/README.pt-BR.md index b378d7f5..39a30295 100644 --- a/src/algorithms/sorting/bubble-sort/README-ptbr.md +++ b/src/algorithms/sorting/bubble-sort/README.pt-BR.md @@ -2,7 +2,7 @@ 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. -![Algorithm Visualization](https://pt.wikipedia.org/wiki/Ficheiro:Bubble_sort_animation.gif) +![Algorithm Visualization](https://upload.wikimedia.org/wikipedia/commons/c/c8/Bubble-sort-example-300px.gif) ## Complexity @@ -13,4 +13,5 @@ O bubble sort, ou ordenação por flutuação (literalmente "por bolha"), é um ## References - [Wikipedia](https://pt.wikipedia.org/wiki/Bubble_sort) +- [YouTube](https://www.youtube.com/watch?v=6Gv8vg0kcHc&index=27&t=0s&list=PLLXdhg_r2hKA7DPDsunoDZ-Z769jWn4R8)