The binary tree is a fundamental data structure used in computer science. The binary tree is a useful data structure for rapidly storing sorted data and rapidly retrieving stored data. A binary tree is composed of parent nodes, or leaves, each of which stores data and also links to up to two other child nodes (leaves) which can be visualized spatially as below the first node with one placed to the left and with one placed to the right. It is the relationship between the leaves linked to and the linking leaf, also known as the parent node, which makes the binary tree such an efficient data structure. It is the leaf on the left which has a lesser key value (i.e., the value used to search for a leaf in the tree), and it is the leaf on the right which has an equal or greater key value.
WELCOME TO COMSATSBLOG ...............
THIS BLOG IS SPECIALLY FOR STUDENTS OF COMSATS ABBOTTABAD WHICH WILL CONTAIN NOTES ,TEXT BOOKS,SOLUTIONS AND MINI PROJECTS TO THE ENGINEERING PROGRAMS WHICH ARE VERY USEFUL FOR YOU ...........
SO FOLLOW THIS BLOG AND IF YOU HAVE ANY INFORMATION OR STUDY MATERIAL RELATED TO ENGINEERING PROGRAMS THEN SEND IT TO ME ON SulemanSunShine@gmail.com
DON'T FORGET TO REGISTER YOURSELF ON THIS BLOG JUST CLICK ON ''JOIN THIS SITE''....
THANKS.........
THIS BLOG IS SPECIALLY FOR STUDENTS OF COMSATS ABBOTTABAD WHICH WILL CONTAIN NOTES ,TEXT BOOKS,SOLUTIONS AND MINI PROJECTS TO THE ENGINEERING PROGRAMS WHICH ARE VERY USEFUL FOR YOU ...........
SO FOLLOW THIS BLOG AND IF YOU HAVE ANY INFORMATION OR STUDY MATERIAL RELATED TO ENGINEERING PROGRAMS THEN SEND IT TO ME ON SulemanSunShine@gmail.com
DON'T FORGET TO REGISTER YOURSELF ON THIS BLOG JUST CLICK ON ''JOIN THIS SITE''....
THANKS.........
Home » Archives for 2013
Sunday, November 24, 2013
Binary Trees in C
The binary tree is a fundamental data structure used in computer science. The binary tree is a useful data structure for rapidly storing sorted data and rapidly retrieving stored data. A binary tree is composed of parent nodes, or leaves, each of which stores data and also links to up to two other child nodes (leaves) which can be visualized spatially as below the first node with one placed to the left and with one placed to the right. It is the relationship between the leaves linked to and the linking leaf, also known as the parent node, which makes the binary tree such an efficient data structure. It is the leaf on the left which has a lesser key value (i.e., the value used to search for a leaf in the tree), and it is the leaf on the right which has an equal or greater key value.
Thursday, November 7, 2013
Defines Linked list. Lists advantages and disadvantages of linked list. Lists and defines types of linked list
Posted by
M. Suleman Saeed Khan
at
2:02 PM
Labels:
Algorithm & Data Structure,
Linkes List
0
comments
Linked List
Linked
list is a dynamic data structure that contains a “link” to the structure
containing the next item. It is a collection of structures ordered not
by their physical placement in memory (like array) but by logical links
that are stored as part of the data in the structure itself.
Monday, October 28, 2013
Program to implement Dequeue (Double Ended Queues) using Arrays with front always at zero
/*Implementation of De-queue using arrays*/
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
Program to implement a Queue using Array by incrementing front as well as rear
/*Implementation of Linear queues using arrays*/
/*Queue implementation by shifting front as well as rear*/
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
#define max 5
/*Queue implementation by shifting front as well as rear*/
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
#define max 5
Program to implement a Queue using Array with front always at zero
/*Implementation of queues using arrays*/
/*Queue implementation with front always at zero*/
#include <iostream.h>
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
/*Queue implementation with front always at zero*/
#include <iostream.h>
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
Wednesday, September 25, 2013
Difference between Bio Data, Resume and CV
In Picture you can see the Difference between Bio Data, Resume and CV

Search
Topics
Followers
Popular Posts
-
In Picture you can see the Difference between Bio Data, Resume and CV
-
By Alex Allain The binary tree is a fundamental data structure used in computer science. The binary tree is a useful data str...
-
Queues Introduction Representation Operations Implementation Simple queue With front always at zero Linked queue Dequeue Pr...
-
/*Implementation of De-queue using arrays*/ #include <stdio.h> #include <conio.h> #include <stdlib.h>
-
EMPTY POST
-
/*Implementation of Linear queues using arrays*/ /*Queue implementation by shifting front as well as rear*/ #include <iostream.h> #i...
-
/*Implementation of queues using arrays*/ /*Queue implementation with front always at zero*/ #include <iostream.h> #include <st...
-
Linked List Linked list is a dynamic data structure that contains a “link” to the structure containing the next item. It is a collec...