top of page

A simple thread pool (using a blocking queue) in C++
A general practice of running tasks on separate threads is creating new threads and running the required tasks on these threads. Creating...
Pradeep P
Oct 4, 20215 min read
870 views
0 comments


Producer Consumer problem – C++ Solution using condition variables
The Producer Consumer problem is apparently a classic multi thread synchronization problem in computer science. Essentially, we have a...
Pradeep P
Oct 4, 20214 min read
5,174 views
1 comment


My attempt at creating a hash table in C++
Hi. Was trying to understand how a hash table works. The below is my attempt to implement the same in C++. I hope to improve this with...
Pradeep P
Oct 2, 20213 min read
43 views
0 comments


Popular topics for C++ interviews
I recently attended a few technical interviews for the role of a senior C++ software engineer / design lead and would like to put up here...
Pradeep P
Sep 16, 20198 min read
100 views
0 comments


Smart Pointers in C++
Smart pointers eliminate the need to use “new” and “delete” while creating dynamically allocated objects. These ensure that the objects...
Pradeep P
Sep 16, 20196 min read
51 views
0 comments
bottom of page