C and C++ Programming Resources

Custom Search

Templates in depth

Posted on September 10th, 2008 5 Comments

Templates are of great utility to programmers in C++, especially when combined with multiple inheritance and operator overloading. The C++ Standard Template Library (STL) provides many useful functions within a framework of connected templates. As the templates in C++ are very expressive they may be used for things other than generic programming. One such use...
Read More | Make a Comment

Generic algorithms

Posted on September 10th, 2008 1 Comment

Algorithms are at the core of computing. To be able to write an algorithm once and for all to work with any type of sequence makes your programs both simpler and safer. The ability to customize algorithms at runtime has revolutionalized software development. The subset of the standard C++ library known as the Standard Template Library (STL) was originally designed...
Read More | Make a Comment