From 8ed7b55564ad328d58dd9c0118eee12ccee617ef Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Mon, 30 Oct 2023 20:56:05 -0400 Subject: [PATCH] adding the underscore --- labs/10_trees_I/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/labs/10_trees_I/README.md b/labs/10_trees_I/README.md index 6fae03e..7ea28ab 100644 --- a/labs/10_trees_I/README.md +++ b/labs/10_trees_I/README.md @@ -50,8 +50,8 @@ The implementation of find provided in ds_set.h is recursive. Re-implement and t *estimate: 20-35 minutes* The implementation of the copy constructor and the assignment operator is not yet complete -because each depends on a private member function called copy tree, the body of which has not yet been -written. Write copy tree and then test to see if it works by “uncommenting” the appropriate code from the +because each depends on a private member function called copy_tree, the body of which has not yet been +written. Write copy_tree and then test to see if it works by “uncommenting” the appropriate code from the main function. **To complete this checkpoint**: Show one of the TAs your new code. Be prepared to discuss the running