Home Library Index Site Map� Links Search About

Welcome to the C++ Library



Arrays
Example Arrays using static and dynamic storage, using variables and constants as subscripts.
Binary File Input/Output
Using binary data files in C++. Using the C++ (not C) library to create and access binary files.
Character Input
Dealing with formatted and unformatted character input.
Containers
Data Containers lists, stacks and vectors implemented using STL and custom functionality.
Streams
Input, Output, Files.
Templates
Templates. Functions and classes.
Utility Functions
Various useful functions.
Lexical comparison function,
general comparison function.
Miscellaneous
Other helpful stuff. An Ascii character set. A timer implemented as a function object.
Code Format
Code is presented in the following easy to copy format.

A functional Double Linked List
class Node
class Node
{
public:
friend class List;
friend class Itor;

TDataStruct Data() {return data;};
void Data(TDataStruct t) {data =t;};

private:
TDataStruct data;
Node *pNext, *pPrev;
};

Note:
Home Library Index Top

STL Database
Arrays
Binary File Input / Output
Character Input
Containers
Standard Template Library
Streams
Templates
Utility Functions
Win32 Programming
Miscellaneous

 
copyright notice

Copyright Robert Mitchell. Last Revised : 25 September, 2000

e-mail me
Hosted by www.Geocities.ws

1