Blog Detail
LoginToWin: C++ Tutorials and Design Patterns
http://login2win.blogspot.com
LoginToWin: C++ Tutorials and Design Patterns. Your resource for C++ Tutorials, Design Patterns, UML etc. Tested code samples presented.
Recent Posts
C++ Singly Linked Lists
What is a singly linked list? How to implement singly linked lists in C++?Linked lists are building blocks for many other data structures like stacks and queues. Linked lists are a sequence of nodes containing data fields and pointers to the next nod...
C++ Circular Queue
What is a circular queue? How to implement circular queue in C++?Refer http://login2win.blogspot.com/2008/07/c-queues.html for details on queue.Circular queue is a more efficient queue implementation in which empty slots created in the beginning of t...
C++ Queues
What is a queue? How to implement queues using C++?Queue is a first-in, first-out (FIFO) data structure. i.e. the element added first to the queue will be the one to be removed first. Elements are always added to the back of the queue and removed fro...
C++ Stacks
What is a stack? How to implement stacks using C++?Stack is a last-in, first-out (LIFO) data structure. i.e. the element added last to the stack will be the one to be removed first.Typical use cases of stacks include:- (1) During debugging it is quit...
C++ Bit Fields
What are bit-fields?Bit fields provide a mechanism to optimize memory usage by allowing to specify the exact number of bits required to store data.Quite useful in embedded programming like mobile phones where memory is limited.The declaration of bit ...
C++ Overriding
What is overriding in C++?Redefining a base class function in the derived class to have our own implementation is referred as overriding.Often confused with overloading which refers to using the same function name but with a different signature. Howe...


Hi Please check my website www.prog2impress.com
Posted: April 29th, 2009 | Report This Comment