Completed BST and most of infrastructure for the whole section

This commit is contained in:
Christopher Sanden
2025-11-07 22:27:11 +01:00
parent e761ac0e23
commit d6d627adad
13 changed files with 449 additions and 22 deletions

View File

@@ -6,7 +6,8 @@ add_library(SharedLib STATIC
TPerson.cpp
TPerson.h
TLinkedList.cpp
TLinkedList.h)
TLinkedList.h
../Assignment-03/TEmployee.h)
# --- Step 2: Add Header Files to the Library ---
@@ -18,7 +19,7 @@ target_sources(SharedLib
SharedLib.h
TDoublyLinkedList.h
TStack.h
TQueue.h
TTreeQueue.h
Utils.h
# Or add other shared files here
PRIVATE
@@ -28,7 +29,7 @@ target_sources(SharedLib
FileReaderUtils.cpp
TDoublyLinkedList.cpp
TStack.cpp
TQueue.cpp
TTreeQueue.cpp
Utils.cpp
)