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

OOP 2

Object Oriented Programming Group A - Practical : 2 Problem Statement :  Develop a program in C++ to create a database of student’s information system containing the following information: Name, Roll number, Class, Division, Date of Birth, Blood group, Contact address, Telephone number, Driving license no. and other. Construct the database with suitable member functions. Make use of constructor, default constructor, copy constructor, destructor, static member functions, friend class, this pointer, inline code and dynamic memory allocation operators-new and delete as well as exception handling. 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.😊

OOP 3

  Imagine a publishing company which does marketing for book and audio cassette versions. Create a class publication that stores the title (a string) and price (type float) of publications. From this class derive two classes: book which adds a page count (type int) and tape which adds a playing time in minutes (type float). Write a program that instantiates the book and tape class, allows user to enter data and displays the data members. If an exception is caught, replace all the data member values with zero values. The code for above problem is as follows: //@author: SPPU CSE GURU #include <iostream> using namespace std; class Publication { private: string title; float price; public: Publication() //constructor { title=""; price=0.0; } Publication(string title, float price) { this->title=title; ...

3D Cube Transformations

  Group C   Practical 6 b   Problem Statement :     Write C++ program to draw 3-D cube and perform following transformations on it using OpenGL i) Scaling ii) Translation iii) Rotation about an axis (X/Y/Z). 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.😊