diff --git a/Worksheet2/bumpall.hpp b/Worksheet2/bumpall.hpp
new file mode 100644
index 0000000000000000000000000000000000000000..ce88b2a10807a548d08acf80f3d081168cacc7e4
--- /dev/null
+++ b/Worksheet2/bumpall.hpp
@@ -0,0 +1,40 @@
+#include <cstddef> 
+#include <iostream> 
+
+
+class BumpAllocator {
+    char* start;   // Pointer to the start of the allocated memory block
+    char* current; // Pointer to the current position in the memory block
+    size_t size;   // Total size of the memory block
+
+public:
+    // Constructor for the BumpAllocator
+    BumpAllocator(size_t size) : size(size) {
+        start = new char[size]; // Allocate a memory block of the given size
+        current = start;        // Initialize the current pointer to the start of the block
+    }
+
+    void* allocate(size_t allocSize) {
+        // Check if there is enough space left in the block for the requested size
+        if (current + allocSize - start > size) {
+            //std::cout << "Not enough space in the block for allocation!" << std::endl;
+            return nullptr; // Return nullptr if there is not enough space
+        }
+        void* alloc = current; // Store the current position to return
+        current += allocSize;  // "Bump" the current pointer forward by the requested size
+        //std::cout << "Memory allocated successfully!" << std::endl;
+        return alloc;          // Return the original current position
+    }
+
+    // Function to reset the allocator
+    void reset() {
+        current = start; // Reset the current pointer back to the start of the block
+        //std::cout << "Allocator reset!" << std::endl;
+    }
+
+    // Destructor for the BumpAllocator
+    ~BumpAllocator() {
+        delete[] start; // Deallocate the memory block when the allocator is destroyed
+        //std::cout << "Memory block deallocated!" << std::endl;
+    }
+};