elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: ¿Eres nuevo? ¿Tienes dudas acerca del funcionamiento de la comunidad? Lee las Reglas Generales


+  Foro de elhacker.net
|-+  Programación
| |-+  Programación C/C++ (Moderadores: Eternal Idol, Littlehorse, K-YreX)
| | |-+  METODOS DE ORDENAMIENTO
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: METODOS DE ORDENAMIENTO  (Leído 14,791 veces)
ANTÓN RAMIREZ

Desconectado Desconectado

Mensajes: 10


Ver Perfil
METODOS DE ORDENAMIENTO
« en: 12 Diciembre 2010, 05:34 am »

HOLA TODOS LOS PROGRAMADORES ESPERO OBTENER BUENOS RESULTADOS Y HACER DISTINTAS AMISTADES E INFUNDIR EN ESTA RAMA , EN ESTA OPORTUNIDAD LES BRINDO UN TRABAJO HECHO EN BASE A LOS METODOS DE ORDENAMIENTO DE CAIRO , ESTAN TODOS ADAPTADOS Y LO ELEGANTE DE ESTE PROGRAMA ES QUE PUEDO SABER QUE METODO ES MAS RAPIDO PARA ELEMENTOS ALEATORIOS MAYORES DE 20000 Y ASI , ESPERO SUS OPINIONES Y COMENTARIOS ATTE, EL QUE DESEA MANDARME UN MENSAJE Y SE LO PUEDO FACILITAR O ALGUIEN ME PUEDE ORIENTAR COMO PUEDO COLGAR PROGRAMAS A ESTA PAGINA

ATTE : ANTON RAMIREZ , LEONARDO VLADIMIR  (ALUMNO UNI)

BUENO SI GUSTAN AQUI LES DEJO EL PSEUDOCIGO , SOLO ES CUESTION DE COMPILAR UTILIZO EL DEV-C++ , ESPERO COMENTARIOS :
Código
  1. /**
  2.  *Nombre del programa: METODOS DE ORDENAMIENTO
  3.  *Descripción: Este menu de ordenamiento contiene los 10 metodos de ordenamiento del libro de cairo ,aqui se podra mostrar
  4.  * cual es el mas rapido, cual es el mas lento .
  5.  * La forma que utilize para hallar el tiempo de cada ordenamiento para un mismo vector que tenga los mismos
  6.  * elementos aleatorios es ir al subprograma leerVector y poner en comentario a random cosa que siempre me
  7.  * va mostrar el mismo vector con los mismos elementos y por eso ya con el mismo vector generado siempre que
  8.  * compilo puedo distribuir el tiempo y saber quien es el mas rapido o mas lento.
  9.  *Autor: Anton ramirez,leonardo vladimir(20090231A)
  10.  *Fecha: 05/10/2010
  11.  *
  12.  */
  13.  
  14. #include <iostream>
  15. #include <stdio.h>
  16. #include <stdlib.h>
  17. #include <conio.h>
  18. #include <time.h>
  19. #define Max 120000
  20. #define TOPE 1000
  21. #define randomize (srand(time(0)))
  22. #define random(num) (rand()%(num))
  23.  
  24. using namespace std;
  25.  
  26. int METODODEORDENAMIENTO();
  27. void leerVector(int X[Max],int *dimX);
  28. void mostrarVector(int X[Max],int dimX);
  29. void ordenarxBurbuja(int X[Max],int dimX);
  30. void ordenarxBurbuja_senal(int X [Max],int *dimX);
  31. void ordenarxShaker_sort(int X[Max],int *dimX);
  32. void ordenarxInsercion_directa(int X[Max],int *dimX);
  33. void ordenarxInsercion_binaria(int X[Max],int *dimX);
  34. void ordenarxSeleccion_directa(int X[Max],int dimX);
  35. void ordenarxShell(int X[Max],int *dimX);
  36. void ordenarxQuicksort_recursivo(int X[Max],int *dimX);
  37. void Reduce_recursivo(int X[Max],int INI,int FIN);
  38. void ordenarxQuicksort_iterativo(int X[Max],int *dimX);
  39. int Reduce_iterativo(int X[Max],int INI,int FIN);
  40. void ordenarxHeapsort(int X[Max],int *dimX);
  41. void Inserta_monticulo(int X[Max],int *dimX);
  42. void Elimina_monticulo(int X[Max],int *dimX);
  43.  
  44. int main()
  45. {
  46. int Opcion,A[Max],na;
  47. do{
  48. Opcion = METODODEORDENAMIENTO();
  49. switch(Opcion)
  50. {
  51. case 1: {
  52. system("cls");
  53. printf("\n*******************Proceso de Lectura del Vector Aleatorio********************\n\n");
  54. leerVector(A,&na);
  55. system("pause");
  56. system("cls");
  57. break;
  58. }
  59. case 2: {
  60. system("cls");
  61. printf("\n****************Mostramos el Vector Aleatorio Generado***********************\n\n");
  62. mostrarVector(A,na);
  63. printf("\n\n");
  64. system("pause");
  65. system("cls");
  66. break;
  67. }
  68. case 3: {
  69. system("cls");
  70. printf("\n******************Ordenamiento por el Metodo de Burbuja************************\n\n");
  71. ordenarxBurbuja(A,na);
  72. printf("\n\n");
  73. system("pause");
  74. system("cls");
  75. break;
  76. }
  77. case 4: {
  78. system("cls");
  79. printf("\n**************Ordenamiento por el Metodo de Burbuja con Senal****************\n\n");
  80. ordenarxBurbuja_senal(A,&na);
  81. printf("\n\n");
  82. system("pause");
  83. system("cls");
  84. break;
  85. }
  86. case 5: {
  87. system("cls");
  88. printf("\n***************Ordenamiento por el Metodo de Shaker sort**********************\n\n");
  89. ordenarxShaker_sort(A,&na);
  90. printf("\n\n");
  91. system("pause");
  92. system("cls");
  93. break;
  94. }
  95. case 6: {
  96. system("cls");
  97. printf("\n***************Ordenamiento por el Metodo de Insercion Directa*****************\n\n");
  98. ordenarxInsercion_directa(A,&na);
  99. printf("\n\n");
  100. system("pause");
  101. system("cls");
  102. break;
  103. }
  104. case 7: {
  105. system("cls");
  106. printf("\n*******************Ordenamiento por el Metodo de Insercion Binaria************\n\n");
  107. ordenarxInsercion_binaria(A,&na);
  108. printf("\n\n");
  109. system("pause");
  110. system("cls");
  111. break;
  112. }
  113. case 8:{
  114. system("cls");
  115. printf("\n***************Ordenacion por el Metodo de Seleccion Directa******************\n\n");
  116. ordenarxSeleccion_directa(A,na);
  117. printf("\n\n");
  118. system("pause");
  119. system("cls");
  120. break;
  121. }
  122. case 9:{
  123. system("cls");
  124. printf("\n******************Ordenamiento por el Metodo de Shell**************************\n\n");
  125. ordenarxShell(A,&na);
  126. printf("\n\n");
  127. system("pause");
  128. system("cls");
  129. break;
  130. }
  131. case 10:{
  132. system("cls");
  133. printf("\n**************Ordenamiento por el Metodo Quicksort Recursivo*******************\n\n");
  134. ordenarxQuicksort_recursivo(A,&na);
  135. printf("\n\n");
  136. system("pause");
  137. system("cls");
  138. break;
  139. }
  140. case 11:{
  141. system("cls");
  142. printf("\n*************Ordenamiento por el Metodo Quicksort Iterativo*********************\n\n");
  143. ordenarxQuicksort_iterativo(A,&na);
  144. printf("\n\n");
  145. system("pause");
  146. system("cls");
  147. break;
  148. }
  149. case 12:{
  150. system("cls");
  151. printf("\n************************Ordenamiento por el Metodo del Monticulo****************\n\n");
  152. ordenarxHeapsort(A,&na);
  153. printf("\n\n");
  154. system("pause");
  155. system("cls");
  156. break;
  157. }
  158. }
  159. }while(Opcion != 0);
  160. return(0);
  161. }
  162.  
  163. int METODODEORDENAMIENTO()
  164. {
  165. int i;
  166. do
  167. {
  168. system("cls");
  169. printf("================================================================================\n");
  170. cout << "----------------M E T O D O S D E O R D E N A M I E N T O S-----------------";
  171. printf("================================================================================\n");
  172. cout << "\n ESCOJER EL MEJOR METODO PARA ORDENAR UN VECTOR: ";
  173. cout << "\n\n\r 0.- TERMINAR";
  174. cout << "\n\r 1.- LEER VECTOR ";
  175. cout << "\n\r 2.- MOSTRAR VECTOR ";
  176. cout << "\n\r 3.- ORDENAR X BURBUJA";
  177. cout << "\n\r 4.- ORDENAR X BURBUJA_SENAL";
  178. cout << "\n\r 5.- ORDENAR X SHAKER_SORT";
  179. cout << "\n\r 6.- ORDENAR X INSERCION_DIRECTA";
  180. cout << "\n\r 7.- ORDENAR X INSERCION_BINARIA";
  181. cout << "\n\r 8.- ORDENAR X SELECCION_DIRECTA";
  182. cout << "\n\r 9.- ORDENAR X SHELL";
  183. cout << "\n\r 10.- ORDENAR X QUICKSORT_RECURSIVO";
  184. cout << "\n\r 11.- ORDENAR X QUICKSORT_ITERATIVO";
  185. cout << "\n\r 12.- ORDENAR X HEAPSORT";
  186. cout << "\n\n\n\r Seleccione su opcion ---> ";
  187. cin >> i;
  188. }while(i<0 || i>12);
  189. return(i);
  190.  
  191. }
  192. void leerVector(int X[Max],int *dimX)
  193. {
  194. int n,i,val;
  195. randomize;//randomize es aqui donde si lo pongo como comentario me genera el mismo vector y es mas facil medir el tiempo..
  196. printf("INGRESE LA DIMENSION DE SU VECTOR A GENERAR: ");
  197. cin>>n;
  198. if(n<Max)
  199. {
  200. for(i=0;i<n;)
  201. {
  202. val=random(TOPE);
  203. X[i]=val;
  204. i=i+1;
  205. }
  206. *dimX=n;
  207. printf("\n............Proceso de Lectura de Numeros Aleatorios Completada............\n\n");
  208. }
  209. else
  210. {
  211. printf("Dimension fuera de Rango...\n\n");
  212. }
  213. }
  214.  
  215. void mostrarVector(int X[Max],int dimX)
  216. {
  217. int i,val;
  218. if(dimX>0){
  219. for(i=0;i<dimX;)
  220. {
  221. val=X[i];
  222. printf("%3d ",val);
  223. i=i+1;
  224. }
  225. }
  226. else{
  227. printf("Vector vacio ...!\n\n");
  228. }
  229. }
  230. void ordenarxBurbuja(int X[Max],int dimX)
  231. {
  232. int i,j,aux;
  233. long ini,fin;
  234. ini = clock();// INICIA EL PROCESO DEL ORDENAMIENTO
  235. for(int i=0;i<dimX-1;i++){
  236. for(int j=i+1;j<dimX;j++){
  237. if(X[i]>X[j]){
  238. aux=X[j];
  239. X[j]=X[i];
  240. X[i]=aux;
  241. }
  242. }
  243. }
  244. mostrarVector(X,dimX);
  245. fin=clock();
  246. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(float)CLOCKS_PER_SEC);
  247. }
  248.  
  249. void ordenarxBurbuja_senal(int X [Max],int *dimX)
  250. {
  251. bool BAND=false;
  252. int i=0,j,aux,
  253. N=*dimX-1;
  254. long ini,fin;
  255. ini = clock();
  256. while((i<=N-1)&&(!BAND))
  257. {
  258. BAND=true;
  259. for(j=0;j<=N-1;j++)
  260. {
  261. if(X[j]>X[j+1])
  262. {
  263. aux=X[j];
  264. X[j]=X[j+1];
  265. X[j+1]=aux;
  266. BAND=false;
  267. }
  268. }
  269. i=i+1;
  270. }
  271. mostrarVector(X,*dimX);
  272. fin=clock();
  273. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(float)CLOCKS_PER_SEC);
  274. }
  275.  
  276. void ordenarxShaker_sort(int X[Max],int *dimX)//METODO DE LA SACUDIDA
  277. {
  278. int i,IZQ=1,aux,N=*dimX-1,k=N,DER=N;
  279. long ini,fin;
  280. ini = clock();
  281. while(DER>=IZQ)
  282. {
  283. for(i=DER;i>=IZQ;i--)
  284. {
  285. if(X[i-1]>X[i])
  286. {
  287. aux=X[i-1];
  288. X[i-1]=X[i];
  289. X[i]=aux;
  290. k=i;
  291. }
  292. }
  293. IZQ=k+1;
  294. for(i=IZQ;i<=DER;i++)
  295. {
  296. if(X[i-1]>X[i])
  297. {
  298. aux=X[i-1];
  299. X[i-1]=X[i];
  300. X[i]=aux;
  301. k=i;
  302. }
  303. }
  304. DER=k-1;
  305. }
  306. mostrarVector(X,*dimX);
  307. fin=clock();
  308. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(float)CLOCKS_PER_SEC);
  309. }
  310.  
  311. void ordenarxInsercion_directa(int X[Max],int *dimX)
  312. {
  313. int i,aux,k,N=*dimX-1;
  314. long ini,fin;
  315. ini = clock();
  316. for(i=1;i<=N;i++)
  317. {
  318. aux=X[i];
  319. k=i-1;
  320. while((k>=0)&&(aux<X[k]))
  321. {
  322. X[k+1]=X[k];
  323. k=k-1;
  324. }
  325. X[k+1]=aux;
  326. }
  327. mostrarVector(X,*dimX);
  328. fin=clock();
  329. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(float)CLOCKS_PER_SEC);
  330. }
  331.  
  332. void ordenarxInsercion_binaria(int X[Max],int *dimX)
  333. {
  334. int i,aux,IZQ,DER,M,j,N=*dimX-1;
  335. long ini,fin;
  336. ini = clock();
  337. for(i=1;i<=N;i++)
  338. {
  339. aux=X[i];
  340. IZQ=0;
  341. DER=i-1;
  342. while(IZQ<=DER)
  343. {
  344. M=(int)((IZQ+DER)/2);
  345. if(aux<=X[M]){
  346. DER=M-1;
  347. }
  348. else
  349. {
  350. IZQ=M+1;
  351. }
  352. }
  353. j=i-1;
  354. while(j>=IZQ)
  355. {
  356. X[j+1]=X[j];
  357. j=j-1;
  358. }
  359. X[IZQ]=aux;
  360. }
  361. mostrarVector(X,*dimX);
  362. fin=clock();
  363. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(float)CLOCKS_PER_SEC);
  364. }
  365.  
  366. //ORDENAMIENTO POR SELECCION
  367. /*ESTE METODO CONSISTE EN ENCONTRAR EL MENOR ELEMENTO DEL ARREGLO
  368. Y UBICARLO AL PRINCIPIO... LUEGO SE BUSCA EL MENOR ELEMENTO DEL RESTO Y SE
  369. UBICA EN SEGUNDO LUGAR. SE REPITE EL PROCESO N-1 VECES*/
  370. void ordenarxSeleccion_directa(int X[Max],int dimX)
  371. {
  372. int i,MENOR,k,j;
  373. time_t ini,fin;
  374. ini = clock();// inicia el calculo del metodo de ordenamiento
  375.  
  376. for(i=0;i<dimX;)
  377. {
  378. MENOR=X[i];
  379. k=i;
  380. for(j=i+1;j<dimX;)
  381. {
  382. if(X[j]<MENOR)
  383. {
  384. MENOR=X[j];
  385. k=j;
  386. }
  387. j=j+1;
  388. }
  389. X[k]=X[i];
  390. X[i]=MENOR;
  391. i=i+1;
  392. }
  393. mostrarVector(X,dimX);
  394. fin=clock();
  395. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(double)CLOCKS_PER_SEC);
  396. }
  397.  
  398. void ordenarxShell(int X[Max],int *dimX)
  399. {
  400. int i,aux,N=*dimX-1,INT=N+1;
  401. bool BAND;
  402. long ini,fin;
  403. ini = clock();
  404. while(INT>0)
  405. {
  406. INT=(int)(INT/2);
  407. BAND=true;
  408. while(BAND)
  409. {
  410. BAND=false;
  411. i=0;
  412. while((i+INT)<=N)
  413. {
  414. if(X[i]>X[i+INT])
  415. {
  416. aux=X[i];
  417. X[i]=X[i+INT];
  418. X[i+INT]=aux;
  419. BAND=true;
  420. }
  421. i=i+1;
  422. }
  423. }
  424. }
  425. mostrarVector(X,*dimX);
  426. fin=clock();
  427. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(float)CLOCKS_PER_SEC);
  428. }
  429.  
  430. void ordenarxQuicksort_recursivo(int X[Max],int *dimX)
  431. {
  432. int N=*dimX-1;
  433. long ini,fin;
  434. ini = clock();
  435. Reduce_recursivo(X,0,N);
  436. mostrarVector(X,*dimX);
  437. fin=clock();
  438. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(float)CLOCKS_PER_SEC);
  439. }
  440.  
  441. void Reduce_recursivo(int X[Max],int INI,int FIN)
  442. {
  443. int IZQ=INI,DER=FIN,POS=INI,aux;
  444. bool BAND=true;
  445. while(BAND)
  446. {
  447. BAND=false;
  448. while((X[POS]<=X[DER])&&(POS!=DER))
  449. {
  450. DER=DER-1;
  451. }
  452. if(POS!=DER)
  453. {
  454. aux=X[POS];
  455. X[POS]=X[DER];
  456. X[DER]=aux;
  457. POS=DER;
  458. while((X[POS]>=X[IZQ])&&(POS!=IZQ))
  459. {
  460. IZQ=IZQ+1;
  461. }
  462. if(POS!=IZQ)
  463. {
  464. BAND=true;
  465. aux=X[POS];
  466. X[POS]=X[IZQ];
  467. X[IZQ]=aux;
  468. POS=IZQ;
  469. }
  470. }
  471. }
  472. if((POS-1)>INI)
  473. {
  474. Reduce_recursivo(X,INI,POS-1);
  475. }
  476. if(FIN>(POS+1))
  477. {
  478. Reduce_recursivo(X,POS+1,FIN);
  479. }
  480. }
  481. void ordenarxQuicksort_iterativo(int X[Max],int *dimX)
  482. {
  483. int full=0,I,F,POS,N=*dimX-1,P1[Max],P2[Max];
  484. long ini,fin;
  485. P1[full]=0;//PILA MENOR
  486. P2[full]=N;//PILA MAYOR
  487. ini = clock();
  488. while(full>=0)
  489. {
  490. I=P1[full];
  491. F=P2[full];
  492. full=full-1;
  493. POS=Reduce_iterativo(X,I,F);
  494. if(I<(POS-1))
  495. {
  496. full=full+1;
  497. P1[full]=I;
  498. P2[full]=POS-1;
  499. }
  500. if(F>(POS+1))
  501. {
  502. full=full+1;
  503. P1[full]=POS+1;
  504. P2[full]=F;
  505. }
  506. }
  507. mostrarVector(X,*dimX);
  508. fin=clock();
  509. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(float)CLOCKS_PER_SEC);
  510. }
  511.  
  512. int Reduce_iterativo(int X[Max],int INI,int FIN)
  513. {
  514. int IZQ=INI,DER=FIN,aux,POS=INI;
  515. bool BAND=true;
  516. while(BAND)
  517. {
  518. while((X[POS]<=X[DER])&&(POS!=DER))
  519. {
  520. DER=DER-1;
  521. }
  522. if(POS==DER)
  523. {
  524. BAND=false;
  525. }
  526. else
  527. {
  528. aux=X[POS];
  529. X[POS]=X[DER];
  530. X[DER]=aux;
  531. POS=DER;
  532. while((X[POS]>=X[IZQ])&&(POS!=IZQ))
  533. {
  534. IZQ=IZQ+1;
  535. }
  536. if(POS==IZQ)
  537. {
  538. BAND=false;
  539. }
  540. else
  541. {
  542. aux=X[POS];
  543. X[POS]=X[IZQ];
  544. X[IZQ]=aux;
  545. POS=IZQ;
  546. }
  547. }
  548. }
  549. //return(POS);// POS variable es una variable donde se almacena el resultado del algoritmo.
  550. }
  551.  
  552. void ordenarxHeapsort(int X[Max],int *dimX)//METODO DEL MONTICULO
  553. {//METODO EFICIENTE QUE TRABAJA CON ARBOLES .
  554. long ini,fin;
  555. ini = clock();
  556. Inserta_monticulo(X,dimX);
  557. Elimina_monticulo(X,dimX);
  558. mostrarVector(X,*dimX);
  559. fin=clock();
  560. printf("\n\ntiempo en segundos %f s\n\n",(fin-ini)/(float)CLOCKS_PER_SEC);
  561. }
  562.  
  563. void Inserta_monticulo(int X[Max],int *dimX)
  564. {
  565. int i,k,aux,N=*dimX-1;
  566. bool BAND;
  567. for(i=1;i<=N;i++)
  568. {
  569. k=i;
  570. BAND=true;
  571. while((k>0)&&BAND)
  572. {
  573. BAND=false;
  574. if(X[k]>X[(int)(k/2)])
  575. {
  576. aux=X[(int)(k/2)];
  577. X[(int)(k/2)]=X[k];
  578. X[k]=aux;
  579. k=(int)(k/2);
  580. BAND=true;
  581. }
  582. }
  583. }
  584. }
  585.  
  586. void Elimina_monticulo(int X[Max],int *dimX)
  587. {
  588. int i,aux,IZQ,DER,k,AP,MAYOR,N=*dimX-1;
  589. bool BOOL;
  590. for(i=N;i>=1;i--)
  591. {
  592. aux=X[i];
  593. X[i]=X[0];
  594. IZQ=1;
  595. DER=2;
  596. k=0;
  597. BOOL=true;
  598. while((IZQ<i)&&BOOL)
  599. {
  600. MAYOR=X[IZQ];
  601. AP=IZQ;
  602. if((MAYOR<X[DER])&&(DER!=i))
  603. {
  604. MAYOR=X[DER];
  605. AP=DER;
  606. }
  607. if(aux<MAYOR)
  608. {
  609. X[k]=X[AP];
  610. k=AP;
  611. }
  612. else
  613. {
  614. BOOL=false;
  615. }
  616. IZQ=k*2;
  617. DER=IZQ+1;
  618. }
  619. X[k]=aux;
  620. }
  621. }


« Última modificación: 7 Enero 2011, 02:33 am por ANTÓN RAMIREZ » En línea

Garfield07


Desconectado Desconectado

Mensajes: 1.121


¡Este año voy a por todas! JMJ 2011


Ver Perfil WWW
Re: METODOS DE ORDENAMIENTO
« Respuesta #1 en: 12 Diciembre 2010, 12:53 pm »

Bueno, Antón, bienvenido al foro!
Primero, por favor, tus próximos post en minuscula, se quitan las ganas de leer xD!

Luego, buen code, pero se podria refinar un poco, no se, me parece en exceso grande  no? Progr. estructurada, pero un poco mas...

luego te recomiendo que te pases a Linux, es mejor para empezar en codes C, pues si no te quedaras con Dev-Cpp para el resto de tu vida, y si quieres Windows, particiones.

Aparte, tu code solo es teoria, que esta bien, pero es mejor que hagas codigos codigos pequeños y utiles, que grandes y teoricos. Eso dejalo para los profes xD!!!


Bienvenido de nuevo y disfruta!


En línea



* Quiero cambiar el mundo, pero estoy seguro de que no me darían el código fuente.
* No estoy tratando de destruir a Microsoft. Ese será tan solo un efecto colateral no intencionado.
* Si compila esta bien, si arranca es perfecto.

¡Wiki elhacker.net!
Un saludo
Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
Metodos de Ordenamiento en c#
.NET (C#, VB.NET, ASP)
alexvem 0 38,767 Último mensaje 4 Agosto 2008, 18:02 pm
por alexvem
Metodos de Ordenamiento
Programación Visual Basic
...:::Téotl:::... 4 13,582 Último mensaje 15 Junio 2012, 22:55 pm
por raul338
cuando se diseñaron los metodos de ordenamiento y quien los diseño?
Programación General
razler 3 7,744 Último mensaje 4 Julio 2010, 22:40 pm
por razler
[Métodos de ordenamiento] QuickSort [C++]
Programación C/C++
2Fac3R 0 2,464 Último mensaje 29 Julio 2015, 20:47 pm
por 2Fac3R
Problema con interfaz metodos de ordenamiento y arreglo (NetBeans)
Java
RG4L 2 2,905 Último mensaje 3 Diciembre 2016, 19:22 pm
por RG4L
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines