Created
November 1, 2017 18:06
-
-
Save hjJunior/85b602abb0005dbdd40430d56225aad5 to your computer and use it in GitHub Desktop.
Sorter: Matriz em c
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 <stdio.h> | |
#include <stdlib.h> | |
#include <time.h> | |
#define t 3 | |
void imprimir(int vet[t][t]){ | |
int i,j,k; | |
for (i = 0; i < t; i++){ | |
for (j = 0; j < t; j++){ | |
printf(" %02d ",vet[i][j]); | |
} | |
printf("\n"); | |
} | |
printf("\n"); | |
} | |
int main(){ | |
int i, j, k, l, aux; | |
int vet[t][t]; | |
// Setup | |
srand(time(NULL)); | |
for (i = 0; i < t; i++){ | |
for (j = 0; j < t; j++){ | |
vet[i][j] = (rand()%98)+1; | |
} | |
} | |
// Print now | |
imprimir(vet); | |
// Shorter now | |
for (i = 0; i < t; i++){ | |
for (j = 0; j < t; j++){ | |
/* | |
Antes estava errando aqui, estava colocando que a posição iniciava de acordo com a linha | |
e a coluna, porem como é uma matriz, ele toda vez precisa rever totalmente a matriz | |
para ver se tem algum numero q esta fora da ordem, por isso recomeço k e l = 0 ao invez | |
de k = i, l = j que faria ele olhar so daquele ponto adiante o que resultaria a ordenagem | |
apenas para cada linha de forma individual | |
*/ | |
for (k = 0; k < t; k++){ | |
for (l = 0; l < t; l++){ | |
if(vet[k][l] > vet[i][j]){ | |
aux = vet[i][j]; | |
vet[i][j] = vet[k][l]; | |
vet[k][l] = aux; | |
} | |
} | |
} | |
} | |
} | |
// Print again | |
imprimir(vet); | |
system("pause"); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment