home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 9 / 09.iso / l / l170 / 3.ddi / SORTDEMO.BAS (.txt) < prev    next >
Encoding:
QuickBASIC Tokenized Source  |  1991-01-29  |  20.9 KB  |  348 lines

  1. RandInt
  2. lower
  3. Upper
  4. BoxInit0
  5. BubbleSortY
  6. CheckScreen+
  7. @    DrawFrame
  8. TopSideF
  9. BottomSide
  10. LeftSide
  11.     RightSide
  12. ElapsedTime
  13. CurrentRow
  14. ExchangeSort
  15. HeapSort
  16. Initialize8
  17. InsertionSort
  18. PercolateDown
  19. MaxLevel`
  20. PercolateUp~
  21. PrintOneBarK
  22. @    QuickSort
  23. Reinitialize
  24. @    ShellSort
  25. SortMenu
  26. SwapBarsm
  27. ToggleSound'
  28. Column
  29. SortType
  30. Length
  31. ColorVal
  32.     BarString
  33. FALSE
  34. LEFTCOLUMNT
  35. NUMOPTIONS
  36. NUMSORTS
  37.     SortArray%
  38. SortBackup
  39. OptionTitle
  40.     StartTime
  41. Foreground
  42. Background
  43. NoSoundB
  44. Pause
  45.     Selection
  46. MaxRow
  47. InitRowU
  48.     MaxColors
  49. GetRow
  50. MonoTrap/
  51. RowTrap
  52. Limit
  53. Switch
  54. ULEFT
  55. URIGHT
  56. LLEFT
  57. LRIGHT
  58. VERTICAL
  59. HORIZONTAL
  60. FrameWidth
  61. FORMAT
  62. SmallestRow
  63.     TempArray
  64. MaxIndex
  65. Index
  66.     BarLength
  67. TempVal
  68. TempLength
  69. Child
  70. Parent
  71.     RandIndex
  72.     Partition
  73. Offset
  74. Escape
  75. Option
  76. Choicetion of the bar being printed. Note that theN
  77. ! SORTDEMO 
  78.  This program graphically demonstrates six common sorting algorithms.  It=
  79.  prints 25 or 43 horizontal bars, all of different lengths and all in random
  80.  order, then sorts the bars from smallest to longest.n
  81.  The program also uses SOUND statements to generate different pitches,
  82.  depending on the location of the bar being printed. Note that the SOUND
  83.  statements delay the speed of each sorting algorithm so you can followD
  84.  the progress of the sort.  Therefore, the times shown are for comparison
  85.  only. They are not an accurate measure of sort speed.
  86.  If you use these sorting routines in your own programs, you may noticeo
  87.  a difference in their relative speeds (for example, the exchangen
  88.  sort may be faster than the shell sort) depending on the number of
  89.  elements to be sorted and how "scrambled" they are to begin with.
  90.  Default type integer.
  91.  Declare FUNCTION and SUB procedures, and the number and type of arguments:=
  92.  Define the data type used to hold the information for each colored bar:
  93.  Bar length (the element comparedr
  94.  in the different sorts)
  95.  Bar color
  96.  The bar (a string of 43 characters)
  97.  Declare global constants:
  98.  Declare global variables, and allocate storage space for them.  SortArray
  99.  and SortBackup are both arrays of the data type SortType defined above:
  100.  Data statements for the different options printed in the sort menu:
  101.  Insertion, Bubble, Heap, Exchange, Shell, Quick,
  102.  Toggle Sound, , <   (Slower), >   (Faster)
  103.  Begin logic of module-level code:
  104.  Initialize data values.
  105.  Print sort menu.v
  106.  Restore original number of rows.
  107.  GetRow, MonoTrap, and RowTrap are error-handling routines invoked by
  108.  the CheckScreen SUB procedure.  GetRow determines whether the program
  109.  started with 25, 43, or 50 lines.  MonoTrap determines the currentr
  110.  video adapter is monochrome.  RowTrap sets the maximum possible
  111.  number of rows (43 or 25).e
  112. RandInt
  113. = RandInt% 
  114.    Returns a random integer greater than or equal to the Lower parameter
  115.    and less than or equal to the Upper parameter. 
  116. BoxInit
  117. = BoxInit 
  118.  Calls the DrawFrame procedure to draw the frame around the sort menu,
  119.  then prints the different options stored in the OptionTitle array.n
  120. QUICKBASIC SORTING DEMO"
  121.  Don't print the last option (> Faster) if the length of the Pause
  122.  is down to 1 clock tick:i
  123.  Toggle sound on or off, then print the current value for NoSound:
  124. Type first character of"
  125. choice ( I B H E S Q T < > )
  126. or ESC key to end program: "
  127. BubbleSort
  128. = BubbleSort 
  129.  The BubbleSort algorithm cycles through SortArray, comparing adjacent
  130.  elements and swapping pairs that are out of order.  It continues to
  131.  do this until no pairs are swapped.
  132.  Two adjacent elements are out of order, so swap their valuess
  133.  and redraw those two bars:o
  134.  Sort on next pass only to where the last switch was made:
  135. CheckScreen
  136. = CheckScreen 
  137.  Checks for type of monitor (VGA, EGA, CGA, or monochrome) and
  138.  starting number of screen lines (50, 43, or 25).n
  139.  Try locating to the 50th row; if that fails, try the 43rd. Finally,
  140.  if that fails, the user was using 25-line mode:
  141.  Try a SCREEN 1 statement to see if the current adapter has colorl
  142.  graphics; if that causes an error, reset MaxColors to 2:a
  143.  See if 43-line mode is accepted; if not, run this program in 25-line
  144.  mode:
  145.  Turn off error trapping.t
  146. DrawFrame
  147. = DrawFrame 
  148.    Draws a rectangular frame using the high-order ASCII characters 
  149.  (201) ,
  150.  (187) , 
  151.  (200) , 
  152.  (188) , 
  153.  (186) , and 
  154.  (205). The parameters
  155.    TopSide, BottomSide, LeftSide, and RightSide are the row and column
  156.    arguments for the upper-left and lower-right corners of the frame.n
  157. ElapsedTime
  158. = ElapsedTime 
  159.  Prints seconds elapsed since the given sorting routine started.
  160.  Note that this time includes both the time it takes to redraw the
  161.  bars plus the pause while the SOUND statement plays a note, and
  162.  thus is not an accurate indication of sorting speed.a
  163.   &###.### seconds  
  164.  Print current selection and number of seconds elapsed inc
  165.  reverse video:s
  166.  Sound off, so just pause.
  167.  Sound on, so play a note whilee
  168.  pausing.
  169.  Restore regular foreground andl
  170.  background colors.e
  171. ExchangeSort
  172. = ExchangeSort 
  173.    The ExchangeSort compares each element in SortArray - starting with
  174.    the first element - with every following element.  If any of thei
  175.    following elements is smaller than the current element, it is exchanged
  176.    with the current element and the process is repeated for the next
  177.    element in SortArray.
  178.  Found a row shorter than the current row, so swap those
  179.  two array elements:
  180. HeapSort
  181. = HeapSort 
  182.   The HeapSort procedure works by calling two other procedures - PercolateUp
  183.   and PercolateDown.  PercolateUp turns SortArray into a "heap," which has
  184.   the properties outlined in the diagram below:a
  185.  SortArray(1) 
  186.  SortArray(2)
  187.  SortArray(3)
  188.      SortArray(4)   SortArray(5)   SortArray(6)  SortArray(7)e
  189.  ...   ...
  190.  ...   ...
  191.  ...  ...
  192.  ...S
  193.   where each "parent node" is greater than each of its "child nodes"; fors
  194.   example, SortArray(1) is greater than SortArray(2) or SortArray(3), 
  195.   SortArray(3) is greater than SortArray(6) or SortArray(7), and so forth.
  196.   Therefore, once the first FOR...NEXT loop in HeapSort is finished, the
  197.   largest element is in SortArray(1).T
  198.   The second FOR...NEXT loop in HeapSort swaps the element in SortArray(1)
  199.   with the element in MaxRow, rebuilds the heap (with PercolateDown) for
  200.   MaxRow - 1, then swaps the element in SortArray(1) with the element in
  201.   MaxRow - 1, rebuilds the heap for MaxRow - 2, and continues in this way
  202.   until the array is sorted.
  203. Initialize
  204. = Initialize 
  205.  Initializes the SortBackup and OptionTitle arrays.  It also calls the
  206.  CheckScreen, BoxInit, and RandInt% procedures.a
  207.  Check for monochrome or EGA and set
  208.  maximum number of text lines.
  209.  Seed the random-number generator.
  210.  Call RandInt% to find a random element in TempArray between 1
  211.  and MaxIndex, then assign the value in that element to BarLength:
  212.  Overwrite the value in TempArray(Index) with the value in
  213.  TempArray(MaxIndex) so the value in TempArray(Index) is
  214.  chosen only once:
  215.  Decrease the value of MaxIndex so that TempArray(MaxIndex) can't:
  216.  be chosen on the next pass through the loop:r
  217.  Assign the BarLength value to the .Length element, then store
  218.  a string of BarLength block characters (ASCII 223: 
  219. ) in thee
  220.  .BarString element:
  221.  Store the appropriate color value in the .ColorVal element:
  222.  Read SORT DEMO menu options and store
  223.  them in the OptionTitle array.s
  224.  Assign values in SortBackup to SortArray and draw
  225.  unsorted bars on the screen.a
  226.  Initialize Pause to 2 clock ticks (@ 1/9 second).
  227.  Draw frame for the sort menu and print options.
  228. InsertionSort
  229. = InsertionSort 
  230.    The InsertionSort procedure compares the length of each successivei
  231.    element in SortArray with the lengths of all the preceding elements.
  232.    When the procedure finds the appropriate place for the new element, it
  233.    inserts the element in its new place, and moves all the other elements
  234.    down one place.
  235.  As long as the length of the J-1st element is greater than them
  236.  length of the original element in SortArray(Row), keep shifting
  237.  the array elements down:l
  238.  Print the new bar.
  239.  Print the elapsed time.
  240.  Otherwise, exit the FOR...NEXT loop:r
  241.  Insert the original value of SortArray(Row) in SortArray(J):i
  242. PercolateDown
  243. = PercolateDown 
  244.    The PercolateDown procedure restores the elements of SortArray from 1 toe
  245.    MaxLevel to a "heap" (see the diagram with the HeapSort procedure).
  246.  Move the value in SortArray(1) down the heap until it has
  247.  reached its proper node (that is, until it is less than its parente
  248.  node or until it has reached MaxLevel, the bottom of the current heap):
  249.  Get the subscript for the child node.
  250.  Reached the bottom of the heap, so exit this procedure:
  251.  If there are two child nodes, find out which one is bigger:
  252.  Move the value down if it is still not bigger than either one of 
  253.  its children:
  254.  Otherwise, SortArray has been restored to a heap from 1 to MaxLevel,p
  255.  so exit:e
  256. PercolateUp
  257. = PercolateUp 
  258.    The PercolateUp procedure converts the elements from 1 to MaxLevel in
  259.    SortArray into a "heap" (see the diagram with the HeapSort procedure).
  260.  Move the value in SortArray(MaxLevel) up the heap until it hast
  261.  reached its proper node (that is, until it is greater than either
  262.  of its child nodes, or until it has reached 1, the top of the heap): 
  263.  Get the subscript for the parent node. 
  264.  The value at the current node is still bigger than the value at
  265.  its parent node, so swap these two array elements: 
  266.  Otherwise, the element has reached its proper place in the heap,
  267.  so exit this procedure:
  268. PrintOneBar
  269. = PrintOneBar 
  270.   Prints SortArray(Row).BarString at the row indicated by the Row
  271.   parameter, using the color in SortArray(Row).ColorVal.
  272. QuickSort
  273. = QuickSort 
  274.    QuickSort works by picking a random "pivot" element in SortArray, theni
  275.    moving every element that is bigger to one side of the pivot, and every
  276.    element that is smaller to the other side.  QuickSort is then callede
  277.    recursively with the two subdivisions created by the pivot.  Once the
  278.    number of elements in a subdivision reaches two, the recursive calls end
  279.    and the array is sorted.s
  280.  Only two elements in this subdivision; swap them if they are out of
  281.  order, then end recursive calls:i
  282.  Pick a pivot element at random, then move it to the end: 
  283.  Move in from both sides towards the pivot element:e
  284.  If we haven't reached the pivot element, it means that two
  285.  elements on either side are out of order, so swap them:
  286.  Move the pivot element back to its proper place in the array:
  287.  Recursively call the QuickSort procedure (pass the smallera
  288.  subdivision first to use less stack space):
  289. Reinitialize
  290. = Reinitialize 
  291.    Restores the array SortArray to its original unsorted state, then
  292.    prints the unsorted color bars.
  293. ShellSort
  294. = ShellSort 
  295.   The ShellSort procedure is similar to the BubbleSort procedure.  However,a
  296.   ShellSort begins by comparing elements that are far apart (separated byr
  297.   the value of the Offset variable, which is initially half the distance
  298.   between the first and last element), then comparing elements that aree
  299.   closer together (when Offset is one, the last iteration of this procedure
  300.   is merely a bubble sort).s
  301.  Set comparison offset to half the number of records in SortArray:
  302.  Loop until offset gets to zero.
  303.  Assume no switches at this offset..
  304.  Compare elements and switch ones out of order:c
  305.  Sort on next pass only to where last switch was made:
  306.  No switches at last offset, try one half as big:m
  307. SortMenu
  308. = SortMenu 
  309.    The SortMenu procedure first calls the Reinitialize procedure to make
  310.    sure the SortArray is in its unsorted form, then prompts the user toe
  311.    make one of the following choices:t
  312.  * One of the sorting algorithms
  313.  * Toggle sound on or offo
  314.  * Increase or decrease speedh
  315.  * End the program
  316.  Create a string consisting of all legal choices:r
  317. IBHESQ><T"
  318.  Make the cursor visible:E
  319.  Get the user's choice and see
  320.  if it's one of the menu options.s
  321.  User chose one of the sorting procedures:
  322.  Rescramble the bars.i
  323.  Make the cursor invisible.e
  324.  Set reverse-video values.
  325.  Record the starting time.
  326.  Branch to the appropriate procedure depending on the key typed:
  327.  Decrease pause length to speed up sorting time, then redraw
  328.  the menu to clear any timing results (since they won't compare:
  329.  with future results):
  330.  Increase pause length to slow down sorting time, then redrawr
  331.  the menu to clear any timing results (since they won't compare
  332.  with future results):
  333.  User pressed ESC, so exit this procedure and return to 
  334.  module level:
  335.  Invalid key
  336.  Turn off reverse video.
  337.  Print final time.
  338. SwapBars
  339. = SwapBars 
  340.    Calls PrintOneBar twice to switch the two bars in Row1 and Row2, 
  341.    then calls the ElapsedTime procedure.
  342. ToggleSound
  343. = ToggleSound 
  344.    Reverses the current value for NoSound, then prints that value next
  345.    to the "Toggle Sound" option on the sort menu.r
  346. : OFF"
  347. : ON "
  348.