This tutorial teaches Data Structures in C++ using classes. It includes explanation on the working of data structures like Stacks,Queues,Linked Lists,Linked Stacks,Linked Queues,Circular Linked Lists and Binary Trees.
Each Data Structure contains concept,code and explanation
An array is a collective name given to a group of similar quantities. These similar quantities could be percentage marks of 100 students, or salaries of 300 employee or ages of 50 employees. Thus an array is a collection of similar elements. These similar elements could be all ints, or all floats or all chars etc. usually, the array of characters is called a ?string?, where as an array of ints or floats is called simply an array. All elements of any given array must be of the same type i.e we can?t have an array of 10 numbers, of which 5 are ints
A unique feature of c language is the preprocessor. A program can use the tools provided by preprocessor to make his program easy to read, modify, portable and more efficient.
One of the essential operations performed in a C language programs is to provide input values to the program and output the data produced by the program to a standard output device. We can assign values to variable through assignment statements such as x = 5 a = 0 ; and so on. Another
Joining mailing list will entitle you
to receive occasional emails informing you of news and
updates to the site and any special offers that may be
of interest to you.