@@ -40,24 +40,26 @@ Algoritmos em C/C++, Java, Python, Go e Ruby desenvolvidos como estudo de Algori
4040
4141| | Algoritmos de Ordenação | C/C++ | Java | Python | Go | Ruby |
4242| ----| -------------------------------------| -------| ------| --------| ----| ------|
43- | 34 | [ Bubble Sort] [ 34 ] | [ C/C++] ( /C/BubbleSort.cpp ) | [ Java] ( /Java/BubbleSort.java ) | [ Python] ( /Python/BubbleSort.py ) | [ Go] ( /GoLang/bubbleSort/bubbleSort.go ) | Ruby |
44- | 35 | [ Cocktail Sort] [ 35 ] | C/C++ | Java | Python | [ Go] ( /GoLang/cocktailsort/cocktailsort.go ) | Ruby |
45- | 36 | [ Comb Sort] [ 36 ] | C/C++ | Java | Python | [ Go] ( /GoLang/combsort/combsort.go ) | Ruby |
46- | 37 | [ Counting Sort] [ 37 ] | C/C++ | Java | Python | [ Go] ( /GoLang/countingsort/countingsort.go ) | Ruby |
47- | 38 | [ Gnome Sort] [ 38 ] | C/C++ | Java | Python | [ Go] ( /GoLang/gnomesort/gnomesort.go ) | Ruby |
48- | 39 | [ Heapsort] [ 39 ] | C/C++ | Java | Python | [ Go] ( /GoLang/heapsort/heapsort.go ) | Ruby |
49- | 40 | [ Insertion Sort] [ 40 ] | [ C/C++] ( /C/InsertionSort.cpp ) | [ Java] ( /Java/InsertionSort.java ) | [ Python] ( /Python/InsertionSortIterativo.py ) | [ Go] ( /GoLang/insertionsort/insertionsort.go ) | Ruby |
50- | 41 | Insertion Sort Recursivo | C/C++ | Java | [ Python] ( /Python/InsertionSortRecursivo.py ) | Go | Ruby |
51- | 42 | [ Merge Sort] [ 42 ] | [ C/C++] ( /C/MergeSort.c ) | Java | Python | [ Go] ( /GoLang/mergesort/mergesort.go ) | Ruby |
52- | 43 | [ Quicksort] [ 43 ] | [ C/C++] ( /C/QuickSort.cpp ) | Java | [ Python] ( /Python/QuickSort.py ) | [ Go] ( /GoLang/quicksort/quicksort.go ) | Ruby |
53- | 44 | [ Radix Sort] [ 44 ] | C/C++ | Java | Python | [ Go] ( /GoLang/radixsort/radixsort.go ) | Ruby |
54- | 45 | [ Selection Sort] [ 45 ] | [ C/C++] ( /C/SelectionSort.cpp ) | [ Java] ( /Java/SelectionSort.java ) | [ Python] ( /Python/SelectionSort.py ) | [ Go] ( /GoLang/selectionsort/selectionsort.go ) | Ruby |
55- | 46 | [ Shell Sort] [ 46 ] | C/C++ | Java | [ Python] ( /Python/shellSort.py ) | [ Go] ( /GoLang/shellsort/shellsort.go ) | Ruby |
43+ | 34 | [ Bogo Sort] [ 34 ] | C/C++ | [ Java] ( /Java/BogoSort.java ) | Python | Go | Ruby |
44+ | 35 | [ Bubble Sort] [ 35 ] | [ C/C++] ( /C/BubbleSort.cpp ) | [ Java] ( /Java/BubbleSort.java ) | [ Python] ( /Python/BubbleSort.py ) | [ Go] ( /GoLang/bubbleSort/bubbleSort.go ) | Ruby |
45+ | 36 | [ Bucket Sort] [ 36 ] | C/C++ | [ Java] ( /Java/BucketSort.java ) | Python | Go | Ruby |
46+ | 37 | [ Cocktail Sort] [ 37 ] | C/C++ | Java | Python | [ Go] ( /GoLang/cocktailsort/cocktailsort.go ) | Ruby |
47+ | 38 | [ Comb Sort] [ 38 ] | C/C++ | Java | Python | [ Go] ( /GoLang/combsort/combsort.go ) | Ruby |
48+ | 39 | [ Counting Sort] [ 39 ] | C/C++ | Java | Python | [ Go] ( /GoLang/countingsort/countingsort.go ) | Ruby |
49+ | 40 | [ Gnome Sort] [ 40 ] | C/C++ | Java | Python | [ Go] ( /GoLang/gnomesort/gnomesort.go ) | Ruby |
50+ | 41 | [ Heapsort] [ 41 ] | C/C++ | [ Java] ( /Java/HeapSort.java ) | Python | [ Go] ( /GoLang/heapsort/heapsort.go ) | Ruby |
51+ | 42 | [ Insertion Sort] [ 42 ] | [ C/C++] ( /C/InsertionSort.cpp ) | [ Java] ( /Java/InsertionSort.java ) | [ Python] ( /Python/InsertionSortIterativo.py ) | [ Go] ( /GoLang/insertionsort/insertionsort.go ) | Ruby |
52+ | 43 | Insertion Sort Recursivo | C/C++ | Java | [ Python] ( /Python/InsertionSortRecursivo.py ) | Go | Ruby |
53+ | 44 | [ Merge Sort] [ 44 ] | [ C/C++] ( /C/MergeSort.c ) | Java | Python | [ Go] ( /GoLang/mergesort/mergesort.go ) | Ruby |
54+ | 45 | [ Quicksort] [ 45 ] | [ C/C++] ( /C/QuickSort.cpp ) | Java | [ Python] ( /Python/QuickSort.py ) | [ Go] ( /GoLang/quicksort/quicksort.go ) | Ruby |
55+ | 46 | [ Radix Sort] [ 46 ] | C/C++ | [ Java] ( /Java/RadixSort.java ) | Python | [ Go] ( /GoLang/radixsort/radixsort.go ) | Ruby |
56+ | 47 | [ Selection Sort] [ 47 ] | [ C/C++] ( /C/SelectionSort.cpp ) | [ Java] ( /Java/SelectionSort.java ) | [ Python] ( /Python/SelectionSort.py ) | [ Go] ( /GoLang/selectionsort/selectionsort.go ) | Ruby |
57+ | 48 | [ Shell Sort] [ 48 ] | C/C++ | [ Java] ( /Java/ShellSort.java ) | [ Python] ( /Python/shellSort.py ) | [ Go] ( /GoLang/shellsort/shellsort.go ) | Ruby |
5658
5759| | Extra | C/C++ | Java | Python | Go | Ruby |
5860| ----| -------------------------------------| -------| ------| --------| ----| ------|
59- | 47 | Lista com 2 Pilhas | C/C++ | Java | [ Python] ( /Python/ListaComPilhas.py ) | Go | Ruby |
60- | 48 | Problema da Soma de 2 Números | C/C++ | Java | [ Python] ( /Python/Soma2Numeros.py ) | Go | Ruby |
61+ | 49 | Lista com 2 Pilhas | C/C++ | Java | [ Python] ( /Python/ListaComPilhas.py ) | Go | Ruby |
62+ | 50 | Problema da Soma de 2 Números | C/C++ | Java | [ Python] ( /Python/Soma2Numeros.py ) | Go | Ruby |
6163
6264Quem tiver interesse em colaborar basta enviar um pull request com seu algoritmo/correção.
6365
@@ -90,15 +92,17 @@ Quem tiver interesse em colaborar basta enviar um pull request com seu algoritmo
9092[ 30 ] : https://pt.wikipedia.org/wiki/Problema_do_cavalo
9193[ 31 ] : https://pt.wikipedia.org/wiki/LIFO
9294[ 33 ] : https://pt.wikipedia.org/wiki/Torre_de_Han%C3%B3i
93- [ 34 ] : https://pt.wikipedia.org/wiki/Bubble_sort
94- [ 35 ] : https://pt.wikipedia.org/wiki/Cocktail_sort
95- [ 36 ] : https://pt.wikipedia.org/wiki/Comb_sort
96- [ 37 ] : https://pt.wikipedia.org/wiki/Counting_sort
97- [ 38 ] : https://pt.wikipedia.org/wiki/Gnome_sort
98- [ 39 ] : https://pt.wikipedia.org/wiki/Heapsort
99- [ 40 ] : https://pt.wikipedia.org/wiki/Insertion_sort
100- [ 42 ] : https://pt.wikipedia.org/wiki/Merge_sort
101- [ 43 ] : https://pt.wikipedia.org/wiki/Quicksort
102- [ 44 ] : https://pt.wikipedia.org/wiki/Radix_sort
103- [ 45 ] : https://pt.wikipedia.org/wiki/Selection_sort
104- [ 46 ] : https://pt.wikipedia.org/wiki/Shell_sort
95+ [ 34 ] : https://pt.wikipedia.org/wiki/Bogosort
96+ [ 35 ] : https://pt.wikipedia.org/wiki/Bubble_sort
97+ [ 36 ] : https://pt.wikipedia.org/wiki/Bucket_sort
98+ [ 37 ] : https://pt.wikipedia.org/wiki/Cocktail_sort
99+ [ 38 ] : https://pt.wikipedia.org/wiki/Comb_sort
100+ [ 39 ] : https://pt.wikipedia.org/wiki/Counting_sort
101+ [ 40 ] : https://pt.wikipedia.org/wiki/Gnome_sort
102+ [ 41 ] : https://pt.wikipedia.org/wiki/Heapsort
103+ [ 42 ] : https://pt.wikipedia.org/wiki/Insertion_sort
104+ [ 44 ] : https://pt.wikipedia.org/wiki/Merge_sort
105+ [ 45 ] : https://pt.wikipedia.org/wiki/Quicksort
106+ [ 46 ] : https://pt.wikipedia.org/wiki/Radix_sort
107+ [ 47 ] : https://pt.wikipedia.org/wiki/Selection_sort
108+ [ 48 ] : https://pt.wikipedia.org/wiki/Shell_sort
0 commit comments