2
|
1 |
<html>
|
|
2 |
<head>
|
|
3 |
<title>The Sorting Algorithm Demo (1.1)</title>
|
|
4 |
</head>
|
|
5 |
<body>
|
|
6 |
<h1>The Sorting Algorithm Demo (1.1)</h1>
|
|
7 |
<hr>
|
|
8 |
|
8959
|
9 |
<table width="340">
|
2
|
10 |
<tr>
|
|
11 |
<th><strong>Bubble Sort</strong></th>
|
|
12 |
<th><strong>Bidirectional Bubble Sort</strong></th>
|
|
13 |
<th><strong>Quick Sort</strong></th>
|
|
14 |
</tr>
|
|
15 |
|
|
16 |
<tr>
|
|
17 |
<th>
|
|
18 |
<applet code=SortItem.class width=100 height=100><param name="alg" value="BubbleSort">alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason."Your browser is completely ignoring the <APPLET> tag!</applet>
|
|
19 |
</th>
|
|
20 |
<th>
|
|
21 |
<applet code=SortItem.class width=100 height=100><param name="alg" value="BidirBubbleSort">alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason."Your browser is completely ignoring the <APPLET> tag!</applet>
|
|
22 |
</th>
|
|
23 |
<th>
|
|
24 |
<applet code=SortItem.class width=100 height=100><param name="alg" value="QSort">alt="Your browser understands the <APPLET> tag but isn't running the applet, for some reason."Your browser is completely ignoring the <APPLET> tag!</applet>
|
|
25 |
</th>
|
|
26 |
</tr>
|
|
27 |
</table>
|
|
28 |
|
|
29 |
|
|
30 |
<hr>
|
|
31 |
<h2>The Sources</h2>
|
|
32 |
<a href="SortItem.java">The applet.</a><br>
|
|
33 |
<a href="SortAlgorithm.java">The "generic" sorting algorithm.</a><br>
|
|
34 |
<a href="BidirBubbleSortAlgorithm.java">The Bi-directional Bubble Sort algorithm.</a><br>
|
|
35 |
<a href="BubbleSortAlgorithm.java">The Bubble Sort algorithm.</a><br>
|
|
36 |
<a href="QSortAlgorithm.java">The Quick Sort algorithm.</a>
|
|
37 |
</body>
|
|
38 |
</html>
|
|
39 |
|