Mike95 C++ COM Server library
- Mike95.stack
-
The stack library implements the LIFO (Last In First Out) system. This functionality is used broady in Computer Science, from return rememberance in nested function calls, to reverse ordering, and others. ASP is no exception to this need, so the ASP stack is now alive with basic push, pop, top, and other basic functionality.
- Mike95.queue
-
The queue library implements the FIFO (First In First Out) system. This functionality is also used broadly in Computer science as well as in real-world scenarios. Everything from printing (everyone has waited for a print job to complete), to waiting in line at the checkout counter.
- Mike95.vector
-
The vector library implements a highly efficient array with many helper functions.
|