Introduction
This chapter presents two applications which seek to illustrate the use of the
many different programming concepts presented previously in Part III.
The first application builds a library of graphic components, Awi
(Application Window Interface). Next the library will be applied in a simple
Francs to Euros converter. The components library reacts to user input by
calling event handlers. Although this is a simple application
algorithmically, it shows the benefits of using closures to structure the
communication between components. Indeed the various event handlers share certain
values via their environment. To appreciate the construction of Awi it is
necessary to know the base library Graphics (see chapter
5, page ??).
The second application is a search for a least cost path in a directed graph. It uses
Dijkstra's algorithm which calculates all the least cost paths from a source node
to all the other nodes connected to this source. A cache mechanism implemented
using a table of weak pointers (see page ??) is used to
speed the search. The GC can free the elements of this table at any time but they
can be recalculated as necessary. The graph visualization uses the simple
button component of the Awi library for selecting the origin and
destination nodes of the path sought. We then compare the efficiency of
running the algorithm both with and without the cache. To facilitate timing measurements between the
two versions a file with the description of the graph and the origin and
destination nodes is passed as an argument to the search algorithm. Finally, a
small graphical interface will be added to the search program.