Add a simple class stack, and example

This commit is contained in:
danghai
2020-01-12 16:53:13 -08:00
parent 02951f1e00
commit ad23bbdf70
6 changed files with 288 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
CC= g++
CFLAGS = -c -Wall
all: clean main test_stack
stack.o: stack.cpp
$(CC) $(CFLAGS) stack.cpp
test_stack: stack.o
$(CC) test_stack.cpp stack.o -o stk
main: stack.o
$(CC) main.cpp stack.o -o main
clean:
rm *o stk main