How the recursion is working when we delete an node from bucket

it will delete all node !=NULL
with help of destructor

destructor is called when we write delee[temp] means we try to delete head but in destructor we say if(node->next!=NULL) delete next so it delete the next value in linked list
in this way we delete nodes recursively using destructor

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.