Skip to main content

DSL E29

 Data Structure Lab :

Practical 29 :

Problem Statement: 

Queues are frequently used in computer programming, and a typical example is the creation of a job queue by an operating system. If the operating system does not use priorities, then the jobs are processed in the order they enter the system. Write C++ program for simulating job queue. Write functions to add job and delete job from queue

Check Out Code Here ðŸ‘‡


 
// Author : SPPU CSE GURU  

#include<iostream>  
   
 using namespace std;  
    
 class Queue{  
      private:  
       int front,rear,max;  
      public:  
           int Q[10];  
           Queue()  
        {  
                 front=0;  
                 rear=-1;  
                 max=10;  
        }  
           void EnQueue();  
           void DeQueue();  
           void Display();  
 };  
   
   
 void Queue::EnQueue()  
 {    
      int data;  
      cout<<"Enter Job no. to Add "<<endl;  
      cin>>data;  
   if(rear<max-1){  
             
                rear++;  
                Q[rear]=data;  
           }       
        
      else{  
           cout<<"Queue is FULL can't add Job"<<endl;  
      }  
        
 }  
   
   
 void Queue::DeQueue()  
 {  
      if(front<=rear){  
           cout<<"Job "<<Q[front]<<" Deleted Successfully"<<endl;  
           front++;  
           }  
      else{  
           cout<<"Job Queue is empty, Add Jobs"<<endl;  
           front=0;  
           rear=-1;  
      }  
 }  
   
   
 void Queue::Display(){  
        
      if(front>rear || rear<front){  
           cout<<"Queue is Empty"<<endl;  
      }  
      else{  
      int temp;  
      temp=front;  
      cout<<"Queue is : ";  
      while(temp<=rear){  
           cout<<Q[temp]<<' ';  
           temp++;  
      }  
 }  
 }  
   
   
 int main(){  
      int choice;  
      char res;  
        
      Queue obj;  
        
      do  
      {  
             
           cout<<"\n1.Add Job \n2.Remove Job"<<endl;   
     cout<<"Enter your Choice : "<<endl;   
     cin>>choice;   
     cout<<endl;  
     switch(choice)  
           {   
       case 1:   
                 obj.EnQueue();  
                 obj.Display();  
              break;   
       case 2:   
                   obj.DeQueue();  
                   obj.Display();  
              break;    
     }  
     cout<<"\nDo you want to continue (y or n)"<<endl;  
           cin>>res;  
      }while(res=='y');  
 }  
   


Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. Do share with your friends.😊

Comments

Popular posts from this blog

DSL A1

Hello Friends lets See the first practical of Data Structure Laboratory(DSL) of SPPU Second Year. Some of the students are afraid of coding as it is new to all of us. So we are here to conquer your fear. You will find it easy as it explained by students only. So lets Get into it The first practical of part A is : In second year computer engineering class, group A student’s play cricket, group B students play badminton and group C students play football. Write a Python program using functions to compute following: -  a) List of students who play both cricket and badminton  b) List of students who play either cricket or badminton but not both  c) Number of students who play neither cricket nor badminton  d) Number of students who play cricket and football but not badminton.  (Note- While realizing the group, duplicate entries should be avoided, Do not use SET built-in functions)  So most of us know the SET theory in mathematics. The above problem is very easy if you have knowledge about

Bouncing Ball

Group B   Practical 4 a   Problem Statement :   Write a C++ program to implement bouncing ball using sine wave form. Apply the concept of polymorphism. Check Out Code Here  ðŸ‘‡ Outputs :  Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊

OOP 6

   Object Oriented Programming Group B - Practical : 6 Problem Statement :  Write C++ program using STL for sorting and searching user defined records such as personal records (Name, DOB, Telephone number etc) using vector container. Check Out Code Here  ðŸ‘‡ Code can get updated so also come back later to see if there is any changes. Also if there is any problem with code you can comment below. If you like it, do share with your friends.😊