Advertisement
Ed94

Console for linklist sortying.

Jul 17th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.70 KB | None | 0 0
  1. Initial list: [75, 84, 91, 96, 99, 100, 99, 96, 91, 84]
  2. Expected : [75, 84, 91, 96, 99, 100, 99, 96, 91, 84]
  3.  
  4. Starting sort.
  5. Current Value: 75 Temp Val: null
  6. Current Value: 84 Temp Val: null
  7. Count: 2 Down: 2
  8. Value Current: 84 Compared Value: 75 Compare Result: 1
  9. Value Current: 84 Compared Value: 84 Compare Result: 0
  10.  
  11. Current Value: 91 Temp Val: null
  12. Count: 3 Down: 3
  13. Value Current: 91 Compared Value: 75 Compare Result: 1
  14. Value Current: 91 Compared Value: 84 Compare Result: 1
  15. Value Current: 91 Compared Value: 91 Compare Result: 0
  16.  
  17. Current Value: 96 Temp Val: null
  18. Count: 4 Down: 4
  19. Value Current: 96 Compared Value: 75 Compare Result: 1
  20. Value Current: 96 Compared Value: 84 Compare Result: 1
  21. Value Current: 96 Compared Value: 91 Compare Result: 1
  22. Value Current: 96 Compared Value: 96 Compare Result: 0
  23.  
  24. Current Value: 99 Temp Val: null
  25. Count: 5 Down: 5
  26. Value Current: 99 Compared Value: 75 Compare Result: 1
  27. Value Current: 99 Compared Value: 84 Compare Result: 1
  28. Value Current: 99 Compared Value: 91 Compare Result: 1
  29. Value Current: 99 Compared Value: 96 Compare Result: 1
  30. Value Current: 99 Compared Value: 99 Compare Result: 0
  31.  
  32. Current Value: 100 Temp Val: null
  33. Count: 6 Down: 6
  34. Value Current: 100 Compared Value: 75 Compare Result: 1
  35. Value Current: 100 Compared Value: 84 Compare Result: 1
  36. Value Current: 100 Compared Value: 91 Compare Result: 1
  37. Value Current: 100 Compared Value: 96 Compare Result: 1
  38. Value Current: 100 Compared Value: 99 Compare Result: 1
  39. Value Current: 100 Compared Value: 100 Compare Result: 0
  40.  
  41. Current Value: 99 Temp Val: null
  42. Count: 7 Down: 7
  43. Value Current: 99 Compared Value: 75 Compare Result: 1
  44. Value Current: 99 Compared Value: 84 Compare Result: 1
  45. Value Current: 99 Compared Value: 91 Compare Result: 1
  46. Value Current: 99 Compared Value: 96 Compare Result: 1
  47. Value Current: 99 Compared Value: 99 Compare Result: 0
  48. Value Current: 99 Compared Value: 100 Compare Result: -1
  49. Value Current: 99 Compared Value: 100 Compare Result: -1
  50.  
  51. Current Value: 96 Temp Val: null
  52. Count: 8 Down: 8
  53. Value Current: 96 Compared Value: 75 Compare Result: 1
  54. Value Current: 96 Compared Value: 84 Compare Result: 1
  55. Value Current: 96 Compared Value: 91 Compare Result: 1
  56. Value Current: 96 Compared Value: 96 Compare Result: 0
  57. Value Current: 96 Compared Value: 99 Compare Result: -1
  58. Value Current: 96 Compared Value: 99 Compare Result: -1
  59. Value Current: 96 Compared Value: 99 Compare Result: -1
  60. Value Current: 96 Compared Value: 99 Compare Result: -1
  61.  
  62. Current Value: 91 Temp Val: null
  63. Count: 9 Down: 9
  64. Value Current: 91 Compared Value: 75 Compare Result: 1
  65. Value Current: 91 Compared Value: 84 Compare Result: 1
  66. Value Current: 91 Compared Value: 91 Compare Result: 0
  67. Value Current: 91 Compared Value: 96 Compare Result: -1
  68. Value Current: 91 Compared Value: 96 Compare Result: -1
  69. Value Current: 91 Compared Value: 96 Compare Result: -1
  70. Value Current: 91 Compared Value: 96 Compare Result: -1
  71. Value Current: 91 Compared Value: 96 Compare Result: -1
  72. Value Current: 91 Compared Value: 96 Compare Result: -1
  73.  
  74. Current Value: 84 Temp Val: null
  75. Count: 10 Down: 10
  76. Value Current: 84 Compared Value: 75 Compare Result: 1
  77. Value Current: 84 Compared Value: 84 Compare Result: 0
  78. Value Current: 84 Compared Value: 91 Compare Result: -1
  79. Value Current: 84 Compared Value: 91 Compare Result: -1
  80. Value Current: 84 Compared Value: 91 Compare Result: -1
  81. Value Current: 84 Compared Value: 91 Compare Result: -1
  82. Value Current: 84 Compared Value: 91 Compare Result: -1
  83. Value Current: 84 Compared Value: 91 Compare Result: -1
  84. Value Current: 84 Compared Value: 91 Compare Result: -1
  85. Value Current: 84 Compared Value: 91 Compare Result: -1
  86.  
  87. After sorting: [75, 84, 84, 84, 84, 84, 84, 84, 84, 84]
  88. Expected : [75, 84, 84, 91, 91, 96, 96, 99, 99, 100]
  89. Initial list: [lion, aardvark, zebra, frog]
  90. Expected : [lion, aardvark, zebra, frog]
  91.  
  92. Starting sort.
  93. Current Value: lion Temp Val: null
  94. Current Value: aardvark Temp Val: null
  95. Count: 2 Down: 2
  96. Value Current: aardvark Compared Value: lion Compare Result: -11
  97. Value Current: aardvark Compared Value: lion Compare Result: -11
  98.  
  99. Current Value: zebra Temp Val: null
  100. Count: 3 Down: 3
  101. Value Current: zebra Compared Value: aardvark Compare Result: 25
  102. Value Current: zebra Compared Value: aardvark Compare Result: 25
  103. Value Current: zebra Compared Value: zebra Compare Result: 0
  104.  
  105. Current Value: frog Temp Val: null
  106. Count: 4 Down: 4
  107. Value Current: frog Compared Value: aardvark Compare Result: 5
  108. Value Current: frog Compared Value: aardvark Compare Result: 5
  109. Value Current: frog Compared Value: zebra Compare Result: -20
  110. Value Current: frog Compared Value: zebra Compare Result: -20
  111.  
  112. After sorting: [aardvark, aardvark, frog, frog]
  113. Expected : [aardvark, frog, lion, zebra]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement