Skip to main content

DSL D25

 Data Structure Lab :

Practical C25 :


A palindrome is a string of character that‘s the same forward and backward. Typically, punctuation, capitalization, and spaces are ignored. For example, “Poor Dan is in a droop” is a palindrome, as can be seen by examining the characters “poordanisinadroop” and observing that they are the same forward and backward. One way to check for a palindrome is to reverse the characters in the string and then compare with them the original-in a palindrome, the sequence will be identical. Write C++ program with functions
a) To print original string followed by reversed string using stack 
b) To check whether given string is palindrome or not 


   
 //Author : SPPU CSE GURU  
   
 #include<iostream>  
 #include<string>  
   
 using namespace std;  
   
 class Palindrome{  
      public:  
           int top,max,length;  
           char arr[100];  
           string data;  
           char Pull();  
        
      Palindrome()  
      {  
           top=-1;  
           max=99;  
      }  
        
      void Push();  
      void Clean();  
      void display();  
      void reverse();  
      void CheckPalindrome();  
        
 };  
   
 void Palindrome::Push(){  
        
      if(top<=max)  
      {  
           cout<<"Enter String : "<<endl;  
        getline(cin,data);  
     length=data.size();  
     for(int i=0;i<length;i++){  
          top++;  
          arr[top]=data[i];  
           }  
      }  
        
      else  
      {  
           cout<<"Stack Overflow"<<endl;  
      }  
        
 }  
   
 void Palindrome::Clean(){  
      int i=0,j=0;  
      while(arr[i]){  
           if(arr[i]==' '){  
                length--;  
           }  
           else{  
                arr[j++]=tolower(arr[i]);  
           }  
           i++;  
      }  
   top=j-1;       
 }  
   
   
 char Palindrome::Pull() {  
   if(top==-1)  
   cout<<"Stack Underflow"<<endl;  
   else {  
       return(arr[top--]);  
   }  
 }  
   
   
   
 void Palindrome::display()  
 {  
      if (top==-1)  
   {  
           cout<<"Stack is empty"<<endl;  
      }  
      else  
      {  
   cout<<"Your Original String is :"<<endl;  
      for(int i=0;i<length;i++)  
      {  
           cout<<arr[i];  
      }  
   }  
   cout<<"\n";  
     
 }  
   
 void Palindrome::reverse()  
 {  
      if (top==-1)  
   {  
           cout<<"Stack is empty"<<endl;  
      }  
      else  
      {  
      cout<<"Reversed String is :"<<endl;       
      for(int i=top;i>=0;i--)  
      {  
           cout<<arr[i];  
      }  
   }  
   cout<<"\n";  
 }  
   
   
   
 void Palindrome::CheckPalindrome()  
 {  
        
      int flag=0;  
      if (top==-1)  
   {  
           cout<<"Stack is empty"<<endl;  
      }  
      else  
      {  
      for(int i=0;i<length;i++)  
      {  
           if (arr[i]!=Pull())  
           {  
                flag=1;  
           }  
      }  
   if (flag==0)  
      {  
        cout<<"String is palindrome"<<endl;  
      }  
      else  
      {  
           cout<<"String is not palindrome"<<endl;  
      }  
        
   }  
 }  
   
   
 int main()  
 {  
        
 Palindrome obj;  
   
 obj.Push();  
 obj.Clean();  
 obj.display();  
 obj.reverse();  
 obj.CheckPalindrome();  
   
 return 0;  
 }  

Comments

Post a Comment

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