Holas, bueno no soy tan buena haciendo, los seguimientos, y tengo un examen de eso, pero tiene que ser preciso, y tengo problemas con el insert sort, si alguien me pudiese ayudar???... se los agradeceria... colocare el codigo aqui abajo:
#include <cstdlib>
#include <iostream>
#define max 6
using namespace std;
void EscribirVector(int V[])
{
for (int i=0;i<max;i++)
cout<<"Elemento ["<<i+1<<"]: "<<V[i]<<endl;
}
void Insercion(int V[])
{
int Aux,J;
bool SW;
for(int I=1;I<max;I++)
{
Aux = V[I];
J = I-1;
SW = true;
while (SW && J>=0)
{
if (Aux<V[J])
{
V[J+1] = V[J];
J--;
}
else
SW = false;
}
V[J+1] = Aux;
}
}
int main(int argc, char *argv[])
{
int Vector[]={15,3,8,6,18,1};
Insercion(Vector);
EscribirVector(Vector);
system("PAUSE");
return EXIT_SUCCESS;
}
Bueno, espero q me puedan ayudar... muxas gracias
PD: Destesto hacerlos seguimientos, por q me pierdo, cuando lo hago en papel, en la compu es mas simple...