Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

#include using namespace std; struct Node { int data; struct Node * next; } ; Node * push ( Node * top , int data

#include
using namespace std;
struct Node {
int data;
struct Node *next;
};
Node *push(Node *top, int data){
Node *newNode = new Node;
newNode->data = data;
newNode->next = NULL;
if (top == NULL){
top = newNode;
} else {
newNode->next = top;
top = newNode;
}
return top;
}
int top(Node *top){ return top->data; }
int pop(Node **top){
if (*top != NULL){
Node *temp =*top;
int x =(*top)->data; // or int x = temp -> data;
*top =(*top)->next;
delete temp;
return x;
} else
return -1;
}
void printStack(Node *top){
if(top != NULL){
Node *cur = top;
while (cur != NULL){
cout cur->data "";
cur = cur->next;
}
cout endl;
}
}
Node *valueCheck(Node *stackTop){
return stackTop;
}
int main(){
struct Node *myStackTop = NULL;
myStackTop = push(myStackTop,2);
myStackTop = push(myStackTop,5);
myStackTop = push(myStackTop,18);
myStackTop = push(myStackTop,15);
myStackTop = push(myStackTop,7);
printStack(myStackTop);
myStackTop = valueCheck(myStackTop);
printStack(myStackTop);
return 0;
}
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Beginning ASP.NET 2.0 And Databases

Authors: John Kauffman, Bradley Millington

1st Edition

0471781347, 978-0471781349

More Books

Students also viewed these Databases questions

Question

What are our strategic aims?pg 87

Answered: 1 week ago