home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / xref.pak / TEXT.DAT < prev    next >
Text File  |  1997-07-23  |  714b  |  12 lines

  1. The container class library provides several different
  2. class templates to use when developing programs. If your program needs
  3. a stack, a list, or a queue you should consider using the
  4. corresponding template from the class library.
  5. Several of these data structures provide multiple implementations, so
  6. that you can select the appropriate implementation based on the runtime
  7. characteristics of your application. For example, you can choose between
  8. a stack implemented as a linked list and a stack implemented as a
  9. vector. The former is usually better when the number of items on the
  10. stack changes drastically during execution of the program. The latter
  11. makes better use of memory when the stack is small.
  12.