C++

Class stack in c

The following C project contains the C source code and C examples used for class stack. This is a fully commented Stack class, that uses Templates to allow different types of Stacks. The Stack is implemented using a linked list.

A templated binary tree class in c

The following C project contains the C source code and C examples used for a templated binary tree class. This is my example of a templated binary tree class and its usage. Comes with sample program. Operations include inserting and deleting nodes, listing nodes in preoder, postorder and inorder and deleting the tree or a subtree. Feedback is welcome.

A simple c stack in c

The following C project contains the C source code and C examples used for a simple c++ stack. These program implements a stack and use a static array to store the data,there is a lot of methods for manipulating the data: "push", "pop", "size"...

Source code recovery in c

The following C project contains the C source code and C examples used for source code recovery. Ever lose your source code but still have your executables? With this program, you will never lose your source code again because the source can be extracted from the executable.

Metric , standard unit conversion (simple string operations) in c

The following C project contains the C source code and C examples used for metric , standard unit conversion (simple string operations). It converts the following units "millimeter" ,"centimeter","kilometer","meter","yard" ,"inch","foot","mile" "gram","kilogram","milligram","ounce","pound","stone","tonne","grain" And "litre","millilitre","pint","fluidounce","UKfluidounce","gallon"

Book library in c

The following C project contains the C source code and C examples used for book library. This project is done in Turbo C++ 3.0 using its graphics library. Its help you to understand how to use mouse, button, text box and etc. Its done in dos yet you will surprise to see user interface like windows.

Stack class in c

The following C project contains the C source code and C examples used for stack class. This is a basic stack class implemented using templates, so it can be used with any data type. It includes the standard push() and pop() functions plus some more.

Constructor overload in c

The following C project contains the C source code and C examples used for constructor overload. enter the date in four formats 1) current systime in seconds 2) date in (ddd, yyyy) 3) date in (dd, mm, yy) 4) date in (char, dd, yyyy) outputs all for formats in 3 different ways, makes use of constructor overloading

Views - a c standard template library extension in c

The following C project contains the C source code and C examples used for views - a c++ standard template library extension. The C++ Standard Template Library provides templates that define generic container and iterator classes. The software described here extends the Standard Template Library by adding template classes that define views. http://www.zeta.org.au/~jon/STL/views/doc/views.html

Pages

Subscribe to RSS - C++