Write a structure to represent a Node in a singly linked-list-based stack similar to the onediscussed in class. Your stack will store integer values. Your program will read a series of integers(until the user enters a non-integer) and store them in a stack, then print them in the reverse order;You will write three functions to assist with this task: push, printStack, and deleteStack.The function push takes a number and a Node and adds the number to the head (top) of thestack by creating a new Node (using malloc) and returning a pointer to this Node. This new nodeis now the top of your stack.The function printStack will need to iterate through your stack and print each one (5 spacesper number, left-aligned), with a new line following the nal number. You will need a pointer thatyou update to the next Node each time you print one. Since you add new items to the top of thestack, the newest elements will be printed rst, giving the reverse-order behavior requested.The function deleteStack handles cleaning up the memory occupied by your stack. It williterate through your list and delete each Node using free. Note that you must get a pointer to thenext Node before you delete the previous one or else you will be trying to access memory that youhave already deallocated.Note that the number of integers you may be required to read is unbounded. This linked-liststrategy allows you to store any number of integers without knowing ahead of time how many therewill be
In C programming
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here