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