Insertion Sort

Instructions:

Use Insertion Sort to sort the table given below in ascending order. Click on an item to select it and copy its value to another position by clicking on the new position.

  1. def sorttime(B):
  2. A = [randrange(1,1000) for _ in range(testsize)] # To make it create a real A for copying
  3. numruns = 5
  4. print "Range ", range(0, numruns)
  5. totaltime = 0
  6. for runs in range(1, numruns):
  7. for i in range(len(B)):
  8. A[i] = B[i]
  9. time1 = datetime.now()
  10. insertionsort(A)
  11. time2 = datetime.now()
  12. checkorder(A)
  13. totaltime += millis(time2-time1)
  14. print "Standard Insertion Sort: Size ", testsize, ", Time: ", totaltime
  15. totaltime = 0
  16. for runs in range(1, numruns):
  17. for i in range(len(B)):
  18. A[i] = B[i]
  19. time1 = datetime.now()
  20. insertionsort2(A)
  21. time2 = datetime.now()
  22. checkorder(A)
  23. totaltime += millis(time2-time1)
  24. print "Standard Insertion Sort, no swap function: Size ", testsize, ", Time: ", totaltime
  25. totaltime = 0
  26. for runs in range(1, numruns):
  27. for i in range(len(B)):
  28. A[i] = B[i]
  29. time1 = datetime.now()
  30. insertionsortshift(A)
  31. time2 = datetime.now()
  32. checkorder(A)
  33. totaltime += millis(time2-time1)
  34. print "Shifting Insertion Sort: Size ", testsize, ", Time: ", totaltime
  35. totaltime = 0
  36. for runs in range(1, numruns):
  37. for i in range(len(B)):
  38. A[i] = B[i]
  39. time1 = datetime.now()
  40. insertionsortshift(A)
  41. time2 = datetime.now()
  42. checkorder(A)
  43. totaltime += millis(time2-time1)
  44. print "Shifting Insertion Sort 2 (!=): Size ", testsize, ", Time: ", totaltime
  45. totaltime = 0
  46. for runs in range(1, numruns):
  47. for i in range(len(B)):
  48. A[i] = B[i]
  49. time1 = datetime.now()
  50. myinsertionsort(A)
  51. time2 = datetime.now()
  52. checkorder(A)
  53. totaltime += millis(time2-time1)
  54. print "Chris Dusold's Insertion Sort: Size ", testsize, ", Time: ", totaltime
  55. totaltime = 0
  56. for runs in range(1, numruns):
  57. for i in range(len(B)):
  58. A[i] = B[i]
  59. time1 = datetime.now()
  60. insertionsortshiftpy(A)
  61. time2 = datetime.now()
  62. checkorder(A)
  63. totaltime += millis(time2-time1)
  64. print "Python'y Insertion Sort with shift: Size ", testsize, ", Time: ", totaltime
  65. # Instead of swapping, "shift" the values down the array
  66. # /* *** ODSATag: InsertionOpt *** */
  67. def insertionsortshift(A):
  68. for i in range(1, len(A)): # Insert i'th record
  69. temp = A[i]
  70. j = i
  71. while j > 0 and temp < A[j-1]:
  72. A[j] = A[j-1]
  73. j -= 1
  74. A[j] = temp
  75. # /* *** ODSAendTag: InsertionOpt *** */
  76. # Same as insertionsortshift, but try != instead of < for the zero test
  77. # This will only matter to JavaScript
  78. def insertionsortshift2(A):
  79. for i in range(1, len(A)-1): # Insert i'th record
  80. temp = A[i]
  81. j=i
  82. while (j != 0) and (temp < A[j-1]):
  83. A[j] = A[j-1]
  84. j -= 1
  85. A[j] = temp
  86. # Same as standard insertion sort, except get rid of the swap
  87. # function call
  88. def insertionsort2(A):
  89. for i in range(1, len(A)-1): # Insert i'th record
  90. j = i;
  91. while (j != 0) and (A[j] < A[j-1]):
  92. temp = A[j]
  93. A[j] = A[j-1]
  94. A[j-1] = temp
  95. j -= 1
  96. def success():
  97. print "Success! (Need to define this)"
  98. def sorttest(A):
  99. insertionsort(A)
  100. # /* *** ODSATag: Insertionsort *** */
  101. def insertionsort(A):
  102. for i in range(len(A)): # Insert i'th record
  103. j = i
  104. while j > 0 and A[j] < A[j-1]:
  105. swap(A, j, j-1)
  106. j -= 1
  107. # /* *** ODSAendTag: Insertionsort *** */
  108. # Chris Dusold's attempt to "pythonize" the sort
  109. def myinsertionsort(A):
  110. for i in range(len(A)): # Insert i'th record
  111. for j in range(i,0,-1):
  112. if (A[j] >= A[j-1]):
  113. break
  114. A[j],A[j-1]=A[j-1],A[j]
  115. # Instead of swapping, "shift" the values down the array
  116. # Try to make it more "native" python
  117. # SOLUTION BELOW NOT WORKING
  118. def insertionsortshiftpy(A):
  119. for i in range(1, len(A)-1): # Insert i'th record
  120. temp = A[i]
  121. for j in range(i,0,-1):
  122. if (temp >= A[j-1]):
  123. break
  124. A[j] = A[j-1]
  125. A[j-1] = temp
  126. # SOLUTION ABOVE NOT WORKING

Table to be sorted

  1. 440
  2. 171
  3. 592
  4. 113
  5. 444
  6. 185
  7. 916
  8. 547
  9. 218
  10. 289

temp variable

  1. 59