pero hace un proceso interno que es ordenar una matriz
la matriz entra como parametro al metodo y el algoritmo se encarga de hacer el proceso de ordenación mediante dos ciclos for.
public void ordenarMatriz(int[,] A)
{
int posmay ;
int posmax ;
for (int x = 0; x < 3; x++)
{
for (int y = 0; y < 3; y++)
{
posmax = x;
posmay = y;
for (int i = 0; i < 3; i++)
{
for (int j = 0; j < 3; j++)
{
if (A[posmax,posmay] < A[i, j])
{
posmax = i;
posmay = j;
aux = A[x, y];
A[x, y] = A[posmax, posmay];
A[posmax, posmay] = aux;
}
}
}
}
}
// creado por Paulo Andres Escobar
No hay comentarios:
Publicar un comentario