From eb676808419a2cdf580d7f390f098f082d022241 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 24 Mar 2025 18:36:46 -0400 Subject: [PATCH] dirent not allowed in the future --- hws/search_engine/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hws/search_engine/README.md b/hws/search_engine/README.md index bfd2da4..3c9c59b 100644 --- a/hws/search_engine/README.md +++ b/hws/search_engine/README.md @@ -401,7 +401,7 @@ A2: All 33 documents. - Poor choice of variable names: non-descriptive names (e.g. 'vec', 'str', 'var'), single-letter variable names (except single loop counter), etc. (-2) - DATA REPRESENTATION (7 pts) - Uses data structures which have not been covered in this class. (-7) - - Uses filesystem library (i.e., #include <filesystem> #include <dirent>). (-7) + - Uses filesystem library (i.e., #include <filesystem> or #include <dirent>). (-7) - Neither std::map nor std::set is used. (-7) - Paths to all 32 HTML files are manually specified within the program's code. (The paths should be found by the program during runtime) (-5) - RECURSION (3 pts)