Class Deboggle

java.lang.Object
   |
   +----java.awt.Component
           |
           +----java.awt.Container
                   |
                   +----java.awt.Window
                           |
                           +----java.awt.Frame
                                   |
                                   +----Deboggle

public class Deboggle
extends Frame
implements ActionListener

Constructor Index

 o Deboggle(String)

Method Index

 o actionPerformed(ActionEvent)
 o main(String[])
To use Deboggle from commandline, Usage: java Deboggle default: dimension = 5, min = 4;
 o quickSort(int[], int[])
quicksort algorithm (with indices), orders the int array as well as the contents of index array indices.
 o quickSort(int[], int[], int, int)
quicksort algorithm (with indices and range) can specify a partial sort of evals and indices using lowest and highest
 o startSearch(String)

Constructors

 o Deboggle
 public Deboggle(String dictionary)

Methods

 o main
 public static void main(String argv[])
To use Deboggle from commandline, Usage: java Deboggle default: dimension = 5, min = 4;

 o actionPerformed
 public void actionPerformed(ActionEvent ex)
 o startSearch
 public synchronized void startSearch(String wordgrid)
 o quickSort
 public static final void quickSort(int evals[],
                                    int indices[])
quicksort algorithm (with indices), orders the int array as well as the contents of index array indices. With this, the caller can order other fields that must maintain adjacency to the int array.

 o quickSort
 public static final void quickSort(int evals[],
                                    int indices[],
                                    int lowest,
                                    int highest)
quicksort algorithm (with indices and range) can specify a partial sort of evals and indices using lowest and highest