-
Constant Time Array
This type of array has the property of having constant time, O(1), for
initialization (constructor), finalization (destructor), and random access.
This constant time array would be useful for a variety of applications.
The space vs. time tradeoff holds true for this type of array. In order to
gain this time benefit, more memory overhead is required.
-
GUI & RESOLVE
Along with Tobin Juday, I am working on
various aspects of graphical user interfaces in RESOLVE. This quarter,
we are building a sample program that utilizes separate toolkit classes
for the user interface and the application's model. The hope is
that this separation of the interface and model from the main
program will allow for swapping of interfaces (text-->GUI or
GUI--> text). By doing this sample program, we will be able to
determine a working schema that others can follow and also
determine if this schema improves application design and maintainability.