Top Menu

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.........

Sunday, November 24, 2013

Binary Trees in C

0 comments

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

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

0 comments
/*Implementation of De-queue using arrays*/

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

Program to implement a Queue using Array by incrementing front as well as rear

0 comments
/*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

Program to implement a Queue using Array with front always at zero

0 comments
/*Implementation of queues using arrays*/
/*Queue implementation with front always at zero*/
#include <iostream.h>
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>

Queues

0 comments
  • Queues
    • Introduction
    • Representation
    • Operations
    • Implementation
      • Simple queue
      • With front always at zero
      • Linked queue
      • Dequeue
      • Priority Queues
        • Max Priority
        • Min Priority

Wednesday, September 25, 2013

Difference between Bio Data, Resume and CV

0 comments


 In Picture you can see the Difference between Bio Data, Resume and CV



A New ComSatS Blog

0 comments
EMPTY POST