Adding 4th assignment - Simple Search

This commit is contained in:
Christopher Sanden
2025-11-01 17:32:45 +01:00
parent 48a478acac
commit d6e494cf1c
9 changed files with 5975 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#ifndef SIMPLESEARCH_SEARCHSUMMARY_H
#define SIMPLESEARCH_SEARCHSUMMARY_H
struct SearchSummary {
long long comparisons = 0;
double timeSpentMs = 0;
};
#endif //SIMPLESEARCH_SEARCHSUMMARY_H