Skip to main content

DSL D26

Data Structure Lab :

Practical D26:

 

In any language program mostly syntax error occurs due to unbalancing delimiter such as

(),{},[]. Write C++ program using stack to check whether given expression is well

parenthesized or not.

 // Author : SE CSE GURU  
 
 #include<iostream>  
 #include<string>  
   
 using namespace std;  
   
 class Parenthesis{  
        
      public:  
           int Top,max;  
           char Stack[30];  
             
           Parenthesis(){  
             
           Top=-1;   
           max=29;   
        
      }  
           void push(char);  
           char pull();  
           int isFull();  
           int isEmpty();  
        
 };  
   
 void Parenthesis::push(char ch){  
        
      if(isFull()){  
           cout<<"Stack is Overflow "<<endl;  
      }  
      else{  
              
      Top++;   
      Stack[Top]=ch;   
       
      }  
             
 }  
   
 char Parenthesis::pull(){  
      if(isEmpty()){  
           cout<<"Stack is Underflow "<<endl;  
      }  
      else{  
           return(Stack[Top--]);  
      }  
 }  
   
 int Parenthesis::isFull(){  
      if(Top==max){  
           return 1;  
      }  
      else{  
           return 0;  
      }  
 }  
   
 int Parenthesis::isEmpty(){  
      if(Top==-1){  
           return 1;  
      }  
      else{  
           return 0;  
      }  
 }  
   
 int main(){  
      char ch,choice;  
      string str;  
      int length;  
      do  
      {  
      Parenthesis obj;  
       
      cout<<"Enter expression : "<<endl;   
      cin>>str;  
      length=str.size();   
     
      int flag=0;  
         
      for(int i=0;i<length;i++){  
          
      ch=str[i];  
          
      if (ch=='('||ch=='['||ch=='{'){  
               
          obj.push(ch);  
           }  
      else{  
                  
                if(!( (ch==')' && obj.pull()=='(') || (ch==']' && obj.pull()=='[') || (ch=='}' && obj.pull()=='{') ) ){  
                       
                     flag=1;  
                     break;  
                }  
           }  
        
      }  
        
      if(obj.isEmpty() && flag==0){  
           cout<<"The Expression is well parenthesized :) "<<endl;  
      }  
      else{  
           cout<<"The Expression is NOT well parenthesized :( "<<endl;  
      }  
      cout<<"Do you want to continue (y or n)"<<endl;  
      cin>>choice;  
      }while(choice=='y');  
        
      return 0;  
 }  
   

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.😊