0N/A<html>
0N/A <head>
0N/A <title>The Sorting Algorithm Demo (1.1)</title>
0N/A </head>
0N/A <body>
0N/A <h1>The Sorting Algorithm Demo (1.1)</h1>
0N/A <hr>
0N/A
3833N/A <table width="340">
0N/A <tr>
0N/A <th><strong>Bubble Sort</strong></th>
0N/A <th><strong>Bidirectional Bubble Sort</strong></th>
0N/A <th><strong>Quick Sort</strong></th>
0N/A </tr>
0N/A
0N/A <tr>
0N/A <th>
0N/A <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>
0N/A </th>
0N/A <th>
0N/A <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>
0N/A </th>
0N/A <th>
0N/A <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>
0N/A </th>
0N/A </tr>
0N/A </table>
0N/A
0N/A
0N/A <hr>
0N/A <h2>The Sources</h2>
0N/A <a href="SortItem.java">The applet.</a><br>
0N/A <a href="SortAlgorithm.java">The "generic" sorting algorithm.</a><br>
0N/A <a href="BidirBubbleSortAlgorithm.java">The Bi-directional Bubble Sort algorithm.</a><br>
0N/A <a href="BubbleSortAlgorithm.java">The Bubble Sort algorithm.</a><br>
0N/A <a href="QSortAlgorithm.java">The Quick Sort algorithm.</a>
0N/A </body>
0N/A</html>
0N/A