#include <iostream>
#include "0-pruebas.h"
using namespace std;
int main()
{
/* Prueba de rndvect */
const int maxdim=50;
cout << "Probando generador... " << endl;
int arr[maxdim];
rndvect(arr, maxdim, 10, 90);
//imprimir el arreglo
// cout << " El arreglo generado es:" << endl;
// for(int i= 0; i<maxdim; i++){
// cout << "arr["<< i << "]=" << arr[i]<< endl;
// }
/* Fin de Prueba de rndvect */
/* Prueba de prntvect */
prntvect(arr, maxdim);
/* Fin Prueba de prntvect */
/* Prueba de quicksort */
// quicksort(arr, 0, maxdim);
// cout<<"Usando quicksort"<<endl;
// prntvect(arr, maxdim);
/* Fin Prueba de quicksort */
/* Prueba de MergeSort */
// mergeSort(arr, 0, maxdim);
// cout<<"Usando MergeSort"<<endl;
// prntvect(arr, maxdim);
/* Fin Prueba de Mergesort */
/* Prueba de BubbleSortRecursiva */
bubbleSortRec(arr, maxdim);
cout<<"Usando BubbleSort"<<endl;
prntvect(arr, maxdim);
/* Fin Prueba de BubbleSortRecursiva */
cout << endl;
return 0;
}