Skip to content

Instantly share code, notes, and snippets.

@hjJunior
Created November 1, 2017 18:06
Show Gist options
  • Save hjJunior/85b602abb0005dbdd40430d56225aad5 to your computer and use it in GitHub Desktop.
Save hjJunior/85b602abb0005dbdd40430d56225aad5 to your computer and use it in GitHub Desktop.
Sorter: Matriz em c
#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