top of page
Pradeep P
Oct 4, 20215 min read
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...
802 views0 comments
Pradeep P
Oct 4, 20214 min read
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...
4,986 views1 comment
Pradeep P
Oct 2, 20213 min read
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...
42 views0 comments
Pradeep P
Sep 16, 20198 min read
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...
96 views0 comments
Pradeep P
Sep 16, 20196 min read
Smart Pointers in C++
Smart pointers eliminate the need to use “new” and “delete” while creating dynamically allocated objects. These ensure that the objects...
45 views0 comments
bottom of page