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

Circle Triangle Pattern

  Group A   Practical 3 a   Problem Statement :   a) Write C++ program to draw the following pattern. Use DDA line and Bresenham‘s circle drawing algorithm. Apply the concept of encapsulation. Check Out Code Here  ðŸ‘‡ Output :  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.😊

DSL A2

  Write a Python program to store marks scored in subject “Fundamental of Data Structure” by N students in the class. Write functions to compute following:  a) The average score of class  b) Highest score and lowest score of class  c) Count of students who were absent for the test  d) Display mark with highest frequency The Code for above problem is as follows : """ @author: SPPU SE GURU """ total=int(input ("Enter total no. of students in your class ")) pre=int(input("No. of students appeared for FDS exam : ")) U=[] for i in range (total): i=i+1 U.append(i) R=[] for i in range(pre): roll=int(input("Enter Roll no. of students present for test :- ")) R.append(roll) M=[] for i in range(pre): print("Enter Roll no. ",R[i],end=" ") marks=int(input("Marks:- ")) M.append(marks) print("********** Solutions Are as fo...

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