From 2e86a6993b8fc323930d6ad2fe29279f76538f66 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Sat, 11 Nov 2023 21:51:20 -0500 Subject: [PATCH] unordered_map,set,stack,queue are okay --- hws/08_youtube_comments/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hws/08_youtube_comments/README.md b/hws/08_youtube_comments/README.md index 9e4395a..ddb6574 100644 --- a/hws/08_youtube_comments/README.md +++ b/hws/08_youtube_comments/README.md @@ -284,7 +284,7 @@ Of course you can change std::cout to a file stream so as to print the thumbs up ## Program Requirements & Submission Details -In this assignment, you are required to maintain the comments in tree nodes, each comment should be stored in one tree node. You are NOT allowed to use any data structures we have not learned so far, but feel free to use any data structures we have already learned, such as std::string, std::vector, std::list, std::map, std::set, std::pair. **You must use recursion in your program in at least one of your functions.** +In this assignment, you are required to maintain the comments in tree nodes, each comment should be stored in one tree node. You are NOT allowed to use any data structures we have not learned so far, but feel free to use any data structures we have already learned, such as std::string, std::vector, std::list, std::map, std::set, std::pair, std::unordered_map, std::unordered_set, std::stack, std::queue. **You must use recursion in your program in at least one of your functions.** Use good coding style when you design and implement your program. Organize your program into functions: don’t put all the code in main! Be sure to read the [Homework Policies](https://www.cs.rpi.edu/academics/courses/fall23/csci1200/homework_policies.php) as you put the finishing touches on your solution. Be sure to make up new test cases to fully debug your program and don’t forget to comment your code! Use the provided template [README.txt](./README.txt) file for notes you want the grader to read. You must do this assignment on your own, as described in the [Collaboration Policy & Academic Integrity](https://www.cs.rpi.edu/academics/courses/fall23/csci1200/academic_integrity.php) page. If you did discuss the problem or error messages, etc. with anyone, please list their names in your README.txt file.