From b5c764a7a0db547ddf377a9bf3b876c2d115503d Mon Sep 17 00:00:00 2001 From: mohit0312 <44519237+mohit0312@users.noreply.github.com> Date: Sat, 3 Oct 2020 13:59:42 +0000 Subject: [PATCH] Update stack_using_list.cpp --- stack_using_list.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/stack_using_list.cpp b/stack_using_list.cpp index 1e777b1..895421e 100644 --- a/stack_using_list.cpp +++ b/stack_using_list.cpp @@ -5,11 +5,11 @@ using namespace std; class SNode { /* - objective: Create a class for a Node for Single Linked list - input parameters: none - output value: none - description: SNode class defines the node structure - approach: Class defines data item is names element with datatype string + Objective: Create a class for a Node for Single Linked list + input parameters: none + Output value: none + Description: SNode class defines the node structure + Approach: Class defines data item is names element with datatype string and link is named next pf snode type */ private: