src/demo/share/applets/SortDemo/example1.html
author smarks
Tue, 28 Mar 2017 12:10:20 -0700
changeset 47412 194f4c32678b
parent 47216 71c04702a3d5
permissions -rw-r--r--
8174966: Unreferenced references Reviewed-by: rriggs, skoivu, rhalade, robm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
<html>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
  <head>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
    <title>The Sorting Algorithm Demo (1.1)</title>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
  </head>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
  <body>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
      <h1>The Sorting Algorithm Demo (1.1)</h1>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
      <hr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
8959
fdeb815ed424 7027689: /applets/SortDemo demo needs to be improved
mrkam
parents: 2
diff changeset
     9
      <table width="340">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
      <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
      <th><strong>Bubble Sort</strong></th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
      <th><strong>Bidirectional Bubble Sort</strong></th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
      <th><strong>Quick Sort</strong></th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
      </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
      <tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
      <th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
      <applet code=SortItem.class width=100 height=100><param name="alg" value="BubbleSort">alt="Your browser understands the &lt;APPLET&gt; tag but isn't running the applet, for some reason."Your browser is completely ignoring the &lt;APPLET&gt; tag!</applet>  
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
      </th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
      <th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
      <applet code=SortItem.class width=100 height=100><param name="alg" value="BidirBubbleSort">alt="Your browser understands the &lt;APPLET&gt; tag but isn't running the applet, for some reason."Your browser is completely ignoring the &lt;APPLET&gt; tag!</applet> 
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
      </th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
      <th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
      <applet code=SortItem.class width=100 height=100><param name="alg" value="QSort">alt="Your browser understands the &lt;APPLET&gt; tag but isn't running the applet, for some reason."Your browser is completely ignoring the &lt;APPLET&gt; tag!</applet>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
      </th>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
      </tr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
      </table>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
      <hr>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
      <h2>The Sources</h2>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
      <a href="SortItem.java">The applet.</a><br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
      <a href="SortAlgorithm.java">The "generic" sorting algorithm.</a><br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
      <a href="BidirBubbleSortAlgorithm.java">The Bi-directional Bubble Sort algorithm.</a><br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
      <a href="BubbleSortAlgorithm.java">The Bubble Sort algorithm.</a><br>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
      <a href="QSortAlgorithm.java">The Quick Sort algorithm.</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
  </body>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
</html>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39