From 58bf747395610c6c68998c52c91469690664079e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=A1=E5=9D=82=E6=98=B4?= Date: Thu, 24 Oct 2024 00:36:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E7=AC=AC=E4=B8=89?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- homework3/CMakeLists.txt | 3 +++ homework3/test3.cpp | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 homework3/test3.cpp diff --git a/homework3/CMakeLists.txt b/homework3/CMakeLists.txt index edaf6ba..884f031 100644 --- a/homework3/CMakeLists.txt +++ b/homework3/CMakeLists.txt @@ -10,3 +10,6 @@ add_executable(test1 add_executable(test2 test2.cpp SeqQueue.cpp SeqQueue.h) +add_executable(test3 test3.cpp + SeqQueue.cpp + SeqQueue.h) diff --git a/homework3/test3.cpp b/homework3/test3.cpp new file mode 100644 index 0000000..501b2f2 --- /dev/null +++ b/homework3/test3.cpp @@ -0,0 +1,9 @@ +//test3.cpp +#include +#include"SeqQueue.h" + +using namespace std; + +int main() { + return 0; +}