#include<iostream.h> #include<conio.h> void main() { clrscr(); int queue[10],front=0,rear=0,n,item,ch; char ...
Read More
Showing posts with label DAA. Show all posts
Showing posts with label DAA. Show all posts
WAP to search an element from a linked list
#include<iostream.h> #include<conio.h> #include<process.h> class node { public: ...
Read More
WAP to delete a node from a given location in linked list
#include<conio.h> #include<iostream.h> struct node { int data; node *next; }*p,*start,*save,*loc,*locp; int find...
Read More
WAP to delete a node from the beginning of the linked list
#include<iostream.h> #include<conio.h> class node { public: char data; node *next; }; v...
Read More
Subscribe to:
Posts (Atom)