put
method, compute the hash key using the modulo operation, access the corresponding bucket, and then add or update the key-value pair within that bucket.get
method, compute the hash key to find the bucket, then search through the bucket to find the key-value pair with the matching key and return the value.remove
method, compute the hash key to locate the bucket, then search through the bucket to find and remove the key-value pair with the matching key.