Answered step by step
Verified Expert Solution
Question
1 Approved Answer
C language Suppose we have a stack implemented as a linked list. The stack is considered full if it has 10 nodes and empty if
C language
Suppose we have a stack implemented as a linked list. The stack is considered full if it has 10 nodes
and empty if the head pointer is NULL. The nodes of the stack have the following structure;
typedef struct nod {
int info;
struct nod *next;
} node;
Write a function to determine if the status of the stack. It returns -1 if it is empty, 1 if it is full, and 0 if it is neither empty nor full .The function is called with the root node pointer as an argument.
int stackStatusl(node *stack) {
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started