Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. // LICZBY DO POSORTOWANIA
  2. 93 23 14 74 37 8 59 51 32 85
  3.  
  4. // SORTOWANIE PRZEZ MINIMUM
  5. 8 23 14 74 37 93 59 51 32 85
  6. 8 14 23 74 37 93 59 51 32 85
  7. 8 14 23 74 37 93 59 51 32 85
  8. 8 14 23 32 37 93 59 51 74 85
  9. 8 14 23 32 37 93 59 51 74 85
  10. 8 14 23 32 37 51 59 93 74 85
  11. 8 14 23 32 37 51 59 93 74 85
  12. 8 14 23 32 37 51 59 93 74 85
  13. 8 14 23 32 37 51 59 74 93 85
  14. 8 14 23 32 37 51 59 74 85 93
  15.  
  16. // ============== MIN ===================
  17.  
  18. // SORTOWANIE BĄBELKOWE
  19. // LICZBY DO POSORTOWANIA
  20. 93 23 14 74 37 8 59 51 32 85
  21.  
  22. // 1 ETAP ROZPISANY SZCZEGÓŁOWO
  23. 93 23 14 74 37 8 59 51 32 85
  24. 93 23 14 74 37 8 59 51 32 85
  25. 93 23 14 74 37 8 59 32 51 85
  26. 93 23 14 74 37 8 32 59 51 85
  27. 93 23 14 74 37 8 32 59 51 85
  28. 93 23 14 74 8 37 32 59 51 85
  29. 93 23 14 8 74 37 32 59 51 85
  30. 93 23 8 14 74 37 32 59 51 85
  31. 93 8 23 14 74 37 32 59 51 85
  32. 8 93 23 14 74 37 32 59 51 85
  33.  
  34. // KOMPLETNE SORTOWANIE
  35. Etapy sortowania
  36. N 0 1 2 3 4 5 6 7 8 9
  37. I 0 93 8 8 8 8 8 8 8 8 8 8
  38. N 1 23 93 14 14 14 14 14 14 14 14 14
  39. D 2 14 23 93 23 23 23 23 23 23 23 23
  40. E 3 74 14 23 93 32 32 32 32 32 32 32
  41. K 4 37 74 32 32 93 37 37 37 37 37 37
  42. S 5 8 37 74 37 37 93 51 51 51 51 51
  43. 6 59 32 37 74 51 51 93 59 59 59 59
  44. 7 51 59 51 51 74 59 59 93 74 74 74
  45. 8 32 51 59 59 59 74 74 74 93 85 85
  46. 9 85 85 85 85 85 85 85 85 85 93 93
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement