Advertisement
Guest User

Untitled

a guest
Apr 14th, 2013
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. ab12
  2.  
  3. swap b, 1 (1, 2 in 4)
  4.  
  5. a1b2
  6.  
  7. -
  8.  
  9. abc123
  10.  
  11. swap b, 1 (1, 3 in 6)
  12.  
  13. a1cb23
  14.  
  15. swap c, b (2, 3 in 6)
  16.  
  17. a1bc23
  18.  
  19. swap c, 2 (3, 4 in 6)
  20.  
  21. a1b2c3
  22.  
  23. --
  24.  
  25. abcd1234
  26.  
  27. swap b, 1 (1, 4 in 8)
  28.  
  29. a1cdb234
  30.  
  31. swap c, b (2, 4 in 8)
  32.  
  33. a1bdc234
  34.  
  35. swap d, 2 (3, 5 in 8)
  36.  
  37. a1b2cd34
  38.  
  39. swap d, 3 (5, 6 in 8)
  40.  
  41. a1b2c3d4
  42.  
  43. ---
  44.  
  45. abcde12345
  46.  
  47. swap b, 1 (1, 5 in 10)
  48.  
  49. a1cdeb2345
  50.  
  51. swap c, b (2, 5 in 10)
  52.  
  53. a1bdec2345
  54.  
  55. swap d, 2 (3, 6 in 10)
  56.  
  57. a1b2ecd345
  58.  
  59. swap e, c (4, 5 in 10)
  60.  
  61. a1b2ced345
  62.  
  63. swap e, 3 (5, 7 in 10)
  64.  
  65. a1b2c3de45
  66.  
  67. swap e, 4 (7, 8 in 10)
  68.  
  69. a1b2c3d4e5
  70.  
  71. ----
  72.  
  73. abcdef123456
  74.  
  75. swap b, 1 (1, 6 in 12)
  76.  
  77. a1cdefb23456
  78.  
  79. swap c, b (2, 6 in 12)
  80.  
  81. a1bdefc23456
  82.  
  83. swap d, 2 (3, 7 in 12)
  84.  
  85. a1b2efcd3456
  86.  
  87. swap e, c (4, 6 in 12)
  88.  
  89. a1b2cfed3456
  90.  
  91. swap f, 3 (5, 8 in 12)
  92.  
  93. a1b2c3edf456
  94.  
  95. swap e, d (6, 7 in 12)
  96.  
  97. a1b2c3def456
  98.  
  99. swap e, 4 (7, 9 in 12)
  100.  
  101. a1b2c3d4fe56
  102.  
  103. swap f, e (8, 9 in 12)
  104.  
  105. a1b2c3d4ef56
  106.  
  107. swap f, 5 (9, 10 in 12)
  108.  
  109. a1b2c3d4e5f6
  110.  
  111. -----
  112.  
  113. swap 1, length/2
  114. swap 2, length/2
  115. swap 3, length/2+1
  116. ...
  117. swap length-3, length-2
  118.  
  119. 2
  120. 33 4
  121. 44 56
  122. 5565 78
  123. 66768799A
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement