COMPUTER PROGRAMMING PROJECTS
Showing posts with label
Data Structure
.
Show all posts
Showing posts with label
Data Structure
.
Show all posts
Monday, June 20, 2011
Queue's in C++
1. Linear Queue
#include<iostream>
#include<cstdio>
using namespace std;
# define maxsize 10
int front=0,rear=-1;
Read more »
Monday, June 13, 2011
Data Structure in C++
1.Stack Using Top fixed Method
/*Top fixed method*/
#include<iostream>
#define size 4
int bos=0;
using namespace std;
Read more »
Older Posts
Home
Subscribe to:
Posts (Atom)