Directory: componts (Components in 8 characters) This directory contain Ada files for a series of programming assignments related to standard data structures and reuse of code. The files included are contain package specifications and bodies for: 1. an unbounded stack of characters to be used by students in completing programming assignment one; 2. a generic unbounded list; 3. a generic unbounded queue, implemented using the list package above; 4. a generic directed graph package, implemented using an adjacency matrix and providing an active iterator to allow a client to traverse the nodes of the graph. 5. two main programs that perform the infix to postfix conversion for programming assignment one and the graph traversal algorithm for programming assignment three. All of the code in this subdirectory has been compiled with the gnat Ada95 compiler version 2.06 for DOS. All the code written for this project is intended for academic use. In particular, it is NOT claimed to be the most efficient use of the structures. The goal instead is to expose students to different implementation mechanisms.