Created
April 28, 2015 14:22
-
-
Save rogerioagjr/c5a147ad3f9bd29a6f6f to your computer and use it in GitHub Desktop.
Bubble Sort
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <cstdio> // scanf e printf | |
#define MAXN 1100 // defino que MAXN é 1100 | |
int n, a, b, vetor[MAXN]; // declaro as variáveis que vou usar | |
void bubble_sort(){ // declaro a função void buble_sort | |
int ordenado=0; // inicializo "ordenado" como 0, para que o loop comece | |
while(ordenado==0){ // enquanto ordenado for 0 | |
ordenado=1; // suponho que o vetor estáordenado | |
for(int i=1; i<n; i++) // e checo para todas as posições, exceto a última | |
if(vetor[i]>vetor[i+1]){ // se não há inversão entre vetor[i] e vetor[i+1] | |
// se houver, troco os valores de vetor[i] e vetor[i+1] | |
int tmp=vetor[i]; | |
vetor[i]=vetor[i+1]; | |
vetor[i+1]=tmp; | |
ordenado=0; // e salvo que o vetor não está ordenado | |
} | |
} | |
} | |
int main(){ | |
scanf("%d", &n); // leio o valor de n | |
for(int i=1; i<=n; i++) scanf("%d", &vetor[i]); // leio os elementos do vetor | |
bubble_sort(); // chamo a bubble_sort | |
for(int i=1; i<=n; i++) printf("%d ", vetor[i]); // imprimo os elementos do vetor, que agora estarão ordenados | |
printf("\n"); // e imprimo uma quebra de linha no fim da entrada | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment