Binary Trees
A binary tree is made of nodes, where each node contains a “left” pointer, a...
Read MorePosted by M. Saqib | Jul 18, 2009 | Data Structures: Different Articles on Data Structures |
A binary tree is made of nodes, where each node contains a “left” pointer, a...
Read MorePosted by M. Saqib | Mar 28, 2009 | Data Structures: Different Articles on Data Structures |
Posted by M. Saqib | Mar 21, 2009 | Data Structures: Different Articles on Data Structures |
The basic aim of mycplus.com website was to develop a website for students of C/C++ and data structures. There are lots of tutorials and source code covering different aspects of C/C++ programming language. Today I have decided to write few articles about data structures and their implementation in C/C++.
Read MorePosted by M. Saqib | Oct 31, 2008 | Java: Java Programming Concepts |
This is a very simple implementation of linked list in java programming language. Very nice and well commented java source code for beginners.
Read MorePosted by M. Saqib | Oct 30, 2008 | Java: Java Programming Concepts |
This is a simple Java program to demonstrate the Stack data structure implementation. This code provides a simple implementation of a stack with basic operations (push, pop, and isEmpty).
Read MorePosted by M. Saqib | Oct 25, 2008 | Computer Science Books |
In this second edition of his successful book, experienced teacher and author Mark Allen Weiss continues to refine and enhance his innovative approach to algorithms and data structures. Written for the advanced data structures...
Read MorePosted by M. Saqib | Oct 24, 2008 | Computer Science Books |
Provides a proven approach to algorithms & data structures using the exciting Java programming language as the implementation tool. With Java, the author highlights conceptual topics, focusing on ADTs and the analysis of...
Read MorePosted by M. Saqib | Sep 28, 2008 | Java: Java Programming Concepts |
This java code implements stack functionality by using arrays. It can Pop and Push an item in stack with the help of array. The item can only be an integer number and internally the java program uses arrays to maintain items in stack.
Read More