about summary refs log tree commit diff stats
path: root/src/server
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-03-20 12:04:49 +0100
committerChristian Krinitsin <mail@krinitsin.com>2025-03-20 12:04:49 +0100
commitafbafc29ab11c17c2b90dd5e645f1943490c276a (patch)
tree1103dbf22d27126b269e7f62a804e68501c760a1 /src/server
parente8abcfc7425167e96bf00a8b79de9a30ee2e2800 (diff)
downloadBT-Programming-Assignment-afbafc29ab11c17c2b90dd5e645f1943490c276a.tar.gz
BT-Programming-Assignment-afbafc29ab11c17c2b90dd5e645f1943490c276a.zip
server: add a sample main function, which tests the hashtable
Diffstat (limited to 'src/server')
-rw-r--r--src/server/main.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/server/main.cpp b/src/server/main.cpp
new file mode 100644
index 0000000..de99edb
--- /dev/null
+++ b/src/server/main.cpp
@@ -0,0 +1,30 @@
+#include <string>
+
+#include "hashtable.h"
+
+int main(int argc, char* argv[])
+{
+    HashTable<int, std::string> hash_table { 5 };
+
+    std::cout << "Add various kv-pairs" << '\n';
+    hash_table.insert(1, "1");
+    hash_table.insert(2, "2");
+    hash_table.insert(3, "3");
+    hash_table.insert(4, "4");
+    hash_table.insert(5, "5");
+    hash_table.insert(6, "6");
+    hash_table.insert(7, "7");
+
+    hash_table.print();
+
+    std::cout << '\n';
+
+    std::cout << "Value for key 8: " << hash_table.get(8).value_or("Key not found!") << '\n';
+    std::cout << "Value for key 4: " << hash_table.get(4).value_or("Key not found!") << '\n';
+
+    std::cout << '\n';
+    std::cout << "Remove pair with key 5" << '\n';
+    hash_table.remove(5);
+    hash_table.print();
+
+}