forked from krishnamanojpvr/DSCPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
39_Reverse_String_Stack.cpp
60 lines (54 loc) · 997 Bytes
/
39_Reverse_String_Stack.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include<iostream>
using namespace std;
class Node{
public:
char data;
Node *next=NULL;
Node(char data){
this->data = data;
this->next = NULL;
}
};
class Stack{
Node * top;
public:
Stack(char data){
Node *newnode = new Node(data);
top = newnode;
}
Stack(){
top = NULL;
}
void Push(char data);
Node* Pop();
void Display();
};
void Stack::Push(char data){
Node *newnode = new Node(data);
newnode->next = top;
top = newnode;
}
Node* Stack::Pop(){
char revChar;
Node * temp = top;
top = temp->next;
return temp;
}
int main()
{
cout<<"Enter a string : ";
string s;
// cin>>s;
getline(cin,s);
string revS;
char revChar;
Stack st;
for(int i=0; i<s.size();i++){
st.Push(s[i]);
}
cout<<"Reversed String : "<<revS<<endl;
for(int i=0;i<s.size();i++){
cout<<st.Pop()->data;
}
return 0;
}