From 1c5ab12c4a052c368a7761bbcf2a42f127006669 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Tue, 14 Nov 2023 13:50:28 -0500 Subject: [PATCH] no teams --- labs/12_stacks_and_queues/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/labs/12_stacks_and_queues/README.md b/labs/12_stacks_and_queues/README.md index 3ff97b6..c84bd78 100644 --- a/labs/12_stacks_and_queues/README.md +++ b/labs/12_stacks_and_queues/README.md @@ -14,7 +14,7 @@ Level Order Traversal: 1 2 3 4 5 6 7 8 *estimate: 30-40 minutes* -Form a team of two members. Read the code of provided program, and then run the program to see its output. After that, replace the STL queue library with the STL stack library, and implement the queue using two stacks. Do not change the *main* function. Do not change the *levelOrderTraversal* function, except this line: +Read the code of provided program, and then run the program to see its output. After that, replace the STL queue library with the STL stack library, and implement the queue using two stacks. Do not change the *main* function. Do not change the *levelOrderTraversal* function, except this line: ```cpp std::queue myQueue; @@ -26,7 +26,7 @@ std::queue myQueue; *estimate: 30-40 minutes* -Form a new team of two members. Re-implement the queue using the STL list library. Still, do not change the *main* function, and do not change the *levelOrderTraversal* function, except this line: +Re-implement the queue using the STL list library. Still, do not change the *main* function, and do not change the *levelOrderTraversal* function, except this line: ```cpp std::queue myQueue;