• Viernes 8 de Noviembre de 2024, 09:44

Autor Tema:  Ayuda Con Codigo En C++(ordenamiento)  (Leído 971 veces)

tomuer01

  • Nuevo Miembro
  • *
  • Mensajes: 1
    • Ver Perfil
Ayuda Con Codigo En C++(ordenamiento)
« en: Jueves 5 de Julio de 2007, 23:38 »
0
Favor revisen este codigo...tengo errores con el ordenamiento de Seleccion e Insercion...ayudenme a solucionarlo...
Gracias...

#include<stdio.h>
#include<conio.h>


#define N 10


/*BURBUJA*/
void burbuja(int ARREGLO[N])
{

int x;
int z;
int aux;

x = 0;

  while(x < N)
  {
     z = N-1;

     while(z >= 0)
     {

       if(ARREGLO[z] < ARREGLO[z - 1])
       {
     aux = ARREGLO[z];
     ARREGLO[z] = ARREGLO[z - 1];
     ARREGLO[z - 1] = aux;
       }

       z--;
     }

     x++;
   }
}

/*INSERCION*/
void insercion(int ARREGLO[N])
{

   int x;
   int z;
   int aux;

   int b;
   /*int flag;*/

   for(x = 1; x < N; x++)
   {
       aux = ARREGLO
  • ;

       z = x - 1;
 /*      flag = 0;*/

       while(b == 0 && z >= 0)
       {

       if(aux < ARREGLO[z])
       {
          ARREGLO[z + 1] = ARREGLO[z];
          z--;
       }
       else

          b = 1;
       }

       ARREGLO[z + 1] = aux;
   }
}


/*SELECCION*/
void seleccion(int ARREGLO[N])
{

     int i;
     int j;
     int min;

     int aux;

     i = 0;

     while(i < N)
     {
   min = i;
   j = i + 1;

   while (j < N)
   {
       if(ARREGLO[j] < ARREGLO)
       {
         min = j;
         aux = ARREGLO;
         ARREGLO = ARREGLO[min];
         ARREGLO[min] = aux;
       }

       j++;
   }

   i++;
     }
}


int main()
{
   int ARREGLO[N], COPIA[N];
   int i;
   char op;

   printf("Ingreso de numeros...\n");
   for(i=0; i<N; i++)
   {
      printf("Numero %d = ", i+1);
      scanf("%d", &ARREGLO);
   }

   for(;;)
   {
     clrscr();
     printf(" ***METODOS DE ORDENAMIENTO***\n\n");
     printf(" 1.- Metodo Burbuja.\n");
     printf(" 2.- Metodo Insercion.\n");
     printf(" 3.- Metodo Seleccion.\n");
     printf(" 4.- Salir.\n");
     printf(" \n\nEscoje tu opcion: ");

     op = getche();

     if(op>='1' && op<='3')
     {
       for(i=0; i<N; i++)
     COPIA = ARREGLO;
     }

     if(op=='1')
       burbuja(COPIA);
     else if(op=='2')
       insercion(COPIA);
     else if(op=='3')
       seleccion(COPIA);
     else if(op=='4')
       break;
     else
     {
       printf("\nOpcion invalida");
       getch();
     }

     if(op>='1' && op<='3')
     {
       printf("\n\nArreglo original: ");
       for(i=0; i<N; i++)
     printf("%d  ", ARREGLO);

       printf("\nArreglo ordenado: ");
       for(i=0; i<N; i++)
     printf("%d  ", COPIA);

       getch();
     }
   }

   return 0;
}
El mensaje contiene 1 archivo adjunto. Debes ingresar o registrarte para poder verlo y descargarlo.

Mollense

  • Miembro de PLATA
  • *****
  • Mensajes: 1755
  • Nacionalidad: ar
    • Ver Perfil
    • http://solocodigo.com/
Re: Ayuda Con Codigo En C++(ordenamiento)
« Respuesta #1 en: Viernes 6 de Julio de 2007, 02:26 »
0
Mira lo que me trajo papá google
Es solo cuestión de buscar un poco  ;)
"Los que renuncian son más numerosos que los que fracasan" H.F.
"No se cómo sería la III Guerra Mundial, pero la cuarta sería con piedras" A.E.
"Quién no fía no es de fiar..."


...no te quedes mirando.