modify the implementation of stack due to previous dependency changes

This commit is contained in:
Shine wOng
2019-05-25 18:18:51 +08:00
parent c13e3acaee
commit 54b9e00caa
4 changed files with 2 additions and 5 deletions

View File

@@ -1,4 +1,3 @@
#include "../chp2/Fib.h"
#include "stackApp.h"
#include <stdlib.h>
#include <string>

View File

@@ -9,7 +9,7 @@ void test_constructor();
void test_enqueue();
void test_dequeue();
int main(){
int test_queue_main(){
clock_t begin = clock();
cout << "Running tests." << endl;

View File

@@ -1,4 +1,3 @@
#include "../chp2/Fib.h"
#include "Stack.h"
#include "time.h"
#include <iostream>
@@ -9,7 +8,7 @@
void test_basic();
void test_capacity();
int stack_test_main(){
int test_stack_main(){
test_basic();
test_capacity();

View File

@@ -1,4 +1,3 @@
#include "../chp2/Fib.h"
#include "stackApp.h"
#include <iostream>
#include <cassert>