1 36 37 40 41 import java.awt.*; 42 import java.awt.event.*; 43 import java.io.InputStream ; 44 import java.util.Hashtable ; 45 import java.net.*; 46 47 56 public class SortItem 57 extends java.applet.Applet  58 implements Runnable , MouseListener { 59 60 63 private Thread kicker; 64 65 68 int arr[]; 69 70 73 int h1 = -1; 74 75 78 int h2 = -1; 79 80 83 String algName; 84 85 88 SortAlgorithm algorithm; 89 90 Dimension initialSize = null; 91 92 95 void scramble() { 96 initialSize = getSize(); 97 int a[] = new int[initialSize.height / 2]; 98 double f = initialSize.width / (double) a.length; 99 100 for (int i = a.length; --i >= 0;) { 101 a[i] = (int)(i * f); 102 } 103 for (int i = a.length; --i >= 0;) { 104 int j = (int)(i * Math.random()); 105 int t = a[i]; 106 a[i] = a[j]; 107 a[j] = t; 108 } 109 arr = a; 110 } 111 112 116 void pause() { 117 pause(-1, -1); 118 } 119 120 124 void pause(int H1) { 125 pause(H1, -1); 126 } 127 128 132 void pause(int H1, int H2) { 133 h1 = H1; 134 h2 = H2; 135 if (kicker != null) { 136 repaint(); 137 } 138 try {Thread.sleep(20);} catch (InterruptedException e){} 139 } 140 141 144 public void init() { 145 String at = getParameter("alg"); 146 if (at == null) { 147 at = "BubbleSort"; 148 } 149 150 algName = at + "Algorithm"; 151 scramble(); 152 153 resize(100, 100); 154 addMouseListener(this); 155 } 156 157 public void start() { 158 h1 = h2 = -1; 159 scramble(); 160 repaint(); 161 showStatus(getParameter("alg")); 162 } 163 164 167 public void destroy() { 168 removeMouseListener(this); 169 } 170 171 175 public void paint(Graphics g) { 176 int a[] = arr; 177 int y = 0; 178 int deltaY = 0, deltaX = 0, evenY = 0, evenX = 0; 179 180 Dimension currentSize = getSize(); 181 int currentHeight = currentSize.height; 182 int currentWidth = currentSize.width; 183 184 if (!currentSize.equals(initialSize)) { 193 evenY = (currentHeight - initialSize.height) % 2; 194 evenX = (currentWidth - initialSize.width) % 2; 195 deltaY = (currentHeight - initialSize.height) / 2; 196 deltaX = (currentWidth - initialSize.width) / 2; 197 198 if (deltaY < 0) { 199 deltaY = 0; 200 evenY = 0; 201 } 202 if (deltaX < 0) { 203 deltaX = 0; 204 evenX = 0; 205 } 206 } 207 208 g.setColor(getBackground()); 210 y = currentHeight - deltaY - 1; 211 for (int i = a.length; --i >= 0; y -= 2) { 212 g.drawLine(deltaX + arr[i], y, currentWidth, y); 213 } 214 215 g.setColor(Color.black); 217 y = currentHeight - deltaY - 1; 218 for (int i = a.length; --i >= 0; y -= 2) { 219 g.drawLine(deltaX, y, deltaX + arr[i], y); 220 } 221 222 if (h1 >= 0) { 223 g.setColor(Color.red); 224 y = deltaY + evenY + h1 * 2 + 1; 225 g.drawLine(deltaX, y, deltaX + initialSize.width, y); 226 } 227 if (h2 >= 0) { 228 g.setColor(Color.blue); 229 y = deltaY + evenY + h2 * 2 + 1; 230 g.drawLine(deltaX, y, deltaX + initialSize.width, y); 231 } 232 } 233 234 237 public void update(Graphics g) { 238 paint(g); 239 } 240 241 248 public void run() { 249 try { 250 if (algorithm == null) { 251 algorithm = (SortAlgorithm)Class.forName(algName).newInstance(); 252 algorithm.setParent(this); 253 } 254 algorithm.init(); 255 algorithm.sort(arr); 256 } catch(Exception e) { 257 } 258 } 259 260 264 public synchronized void stop() { 265 if (algorithm != null){ 266 try { 267 algorithm.stop(); 268 } catch (IllegalThreadStateException e) { 269 } 271 kicker = null; 272 } 273 } 274 275 282 private synchronized void startSort() { 283 if (kicker == null || !kicker.isAlive()) { 284 kicker = new Thread (this); 285 kicker.start(); 286 } 287 } 288 289 290 public void mouseClicked(MouseEvent e) { 291 showStatus(getParameter("alg")); 292 } 293 294 public void mousePressed(MouseEvent e) { 295 } 296 297 300 public void mouseReleased(MouseEvent e) { 301 startSort(); 302 e.consume(); 303 } 304 305 public void mouseEntered(MouseEvent e) { 306 } 307 308 public void mouseExited(MouseEvent e) { 309 } 310 311 public String getAppletInfo() { 312 return "Title: SortDemo \nAuthor: James Gosling 1.17f, 10 Apr 1995 \nA simple applet class to demonstrate a sort algorithm. \nYou can specify a sorting algorithm using the 'alg' attribute. \nWhen you click on the applet, a thread is forked which animates \nthe sorting algorithm."; 313 } 314 315 public String [][] getParameterInfo() { 316 String [][] info = { 317 {"alg", "string", "The name of the algorithm to run. You can choose from the provided algorithms or suppply your own, as long as the classes are runnable as threads and their names end in 'Algorithm.' BubbleSort is the default. Example: Use 'QSort' to run the QSortAlgorithm class."} 318 }; 319 return info; 320 } 321 } 322 323
| Popular Tags
|