C++ programs for the implementation of Breadth First Search(BFS) for a given graph

Thursday, March 11th, 2010  »  Posted By  »  Total 8 Comments

/* Write C++ programs for the implementation of BFS for a given graph */ #include<iostream> #include<conio.h> #include<stdlib.h> using namespace std; int cost[10][10],i,j,k,n,qu[10],front,rare,v,visit[10],visited[10];   main() { int m; cout <<"enterno of vertices"; cin >> n; cout <<"ente no of edges"; cin >> m; cout <<"\nEDGES \n"; for(k=1;k<=m;k++) { cin >>i>>j; cost[i][j]=1; }   cout <<"enter initial [...]

C++ program to implement circular queue ADT using an array

Thursday, March 11th, 2010  »  Posted By  »  Total 1 Comment

/* Write a C++ program to implement circular queue ADT using an array */ #include<iostream> #include<conio.h> #include<stdlib.h> using namespace std; class cqueue { int q[5],front,rare; public: cqueue() { front=-1; rare=-1; } void push(int x) { if(front ==-1 && rare == -1) { q[++rare]=x; front=rare; return; } else if(front == (rare+1)%5 ) { cout <<" Circular [...]

C++ program to implement the Queue ADT using a single linked list

Thursday, March 11th, 2010  »  Posted By  »  Total 1 Comment

/* Write C++ programs to implement the Queue ADT using a singly linked list */ #include<iostream> #include<conio.h> #include<stdlib.h> using namespace std; class node { public: class node *next; int data; };   class queue : public node { node *head; int front,rare; public: queue() { front=-1; rare=-1; } void push(int x) { if (rare < [...]

C++ programs to implement the Stack ADT using a singly linked list

Wednesday, March 10th, 2010  »  Posted By  »  Total 6 Comments

while(temp->next != NULL)
temp=temp->next;
temp1=new node;
temp->next=temp1;
temp1->next=NULL;
temp1->data=x;

C++ programs to implement the Queue ADT using an array

Wednesday, March 10th, 2010  »  Posted By  »  Total 1 Comment

/* Write C++ programs to implement the Queue ADT using an array */ #include<iostream> #include<conio.h> #include<stdlib.h> using namespace std;   class queue { int queue1[5]; int rear,front; public: queue() { rear=-1; front=-1; } void insert(int x) { if(rear > 4) { cout <<"queue over flow"; front=rear=-1; return; } queue1[++rear]=x; cout <<"inserted" <<x; } void delet() [...]

C++ programs to implement the Stack ADT using an array

Wednesday, March 10th, 2010  »  Posted By  »  Total 4 Comments

void push(int x)
{
if(top > 4)
{
cout <<“stack over flow”;
return;
}
stk[++top]=x;
cout <<“inserted” < }

C++ program to implement all the functions of a dictionary (ADT) using hashing

Wednesday, March 10th, 2010  »  Posted By  »  Total 7 Comments

class Dictionary
{
public:
int index;

Dictionary();
void insert(int);
void search(int);
void delete_ele(int);
};

C++ program to implement the double ended queue using a double linked list

Wednesday, March 10th, 2010  »  Posted By  »  Total 1 Comment

class node
{
public:
int data;
class node *next;
class node *prev;
};

C++ program to perform Insert, Delete, Search an element into a binary search tree

Wednesday, March 10th, 2010  »  Posted By  »  Total 3 Comments

/* Write a C++ program to perform the following operations:
a) Insert an element into a binary search tree.
b) Delete an element from a binary search tree.
c) Search for a key element in a binary search tree. */

C++ program to perform Insertion and Deletion operations on AVL-trees

Wednesday, March 10th, 2010  »  Posted By  »  Total 6 Comments

void AVL::display(AVLNODE *temp)
{
if(temp==NULL)
return;
cout<data<<" ";
display(temp->left);
display(temp->right);
}

Question and Answer
C/C++ Unix & Linux Wordpress
Source codes
C C++ Java

Free email signup