Adding 4th assignment - Simple Search

This commit is contained in:
Christopher Sanden
2025-11-01 17:29:11 +01:00
parent 48a478acac
commit 4c6e3d0905
10 changed files with 5982 additions and 1 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