From 3173579d5dbbc72e56f66fbc551155d8a1b1ceb1 Mon Sep 17 00:00:00 2001 From: kailasaps <43422245+kailasaps@users.noreply.github.com> Date: Mon, 22 Oct 2018 21:22:09 +0530 Subject: [PATCH] Create linked_stack.h --- linked_stack.h | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 linked_stack.h diff --git a/linked_stack.h b/linked_stack.h new file mode 100644 index 0000000..bbbe75b --- /dev/null +++ b/linked_stack.h @@ -0,0 +1,5 @@ +#include "SinglyLinkedList.h" +node* createstack(); +void push(int item,node *head); +int pop(node *head); +int peek(node *head);