Where can I find the files for the CS106 classes (Scanner, Vector, Map, etc.)?
Here is zip of the CS106 classes for Mac and zip of the CS106 classes for PC. Download the zip, unpack it, and then copy those you need into your project directory. For template classes (Vector, Map, etc.) there is just a .h file. Copy that .h file to your project directory and be sure to #include the header in your client code. For non-template classes (Scanner, Lexicon), there is .h and .cpp. Copy both to your project directory, #include the header in your client code, and add the .cpp file to the list of files compiled in your VS/CodeWarrior project.