top of page
![A simple thread pool (using a blocking queue) in C++](https://static.wixstatic.com/media/8546bf_153f42bbdb3e40d9b12b3c51ff9e501a~mv2.png/v1/fill/w_421,h_341,fp_0.50_0.50,q_95,enc_auto/8546bf_153f42bbdb3e40d9b12b3c51ff9e501a~mv2.webp)
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...
823 views0 comments
![](https://static.wixstatic.com/media/8546bf_ef259d0c261d451ca79fe172667e2333~mv2.jpg/v1/fill/w_250,h_250,fp_0.50_0.50,q_30,blur_30,enc_auto/8546bf_ef259d0c261d451ca79fe172667e2333~mv2.webp)
![Producer Consumer problem – C++ Solution using condition variables](https://static.wixstatic.com/media/8546bf_ef259d0c261d451ca79fe172667e2333~mv2.jpg/v1/fill/w_454,h_341,fp_0.50_0.50,q_90,enc_auto/8546bf_ef259d0c261d451ca79fe172667e2333~mv2.webp)
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...
5,042 views1 comment
![](https://static.wixstatic.com/media/8546bf_c5775a3713a54342970cb603a208863b~mv2.jpg/v1/fill/w_250,h_250,fp_0.50_0.50,q_30,blur_30,enc_auto/8546bf_c5775a3713a54342970cb603a208863b~mv2.webp)
![My attempt at creating a hash table in C++](https://static.wixstatic.com/media/8546bf_c5775a3713a54342970cb603a208863b~mv2.jpg/v1/fill/w_454,h_341,fp_0.50_0.50,q_90,enc_auto/8546bf_c5775a3713a54342970cb603a208863b~mv2.webp)
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
![](https://static.wixstatic.com/media/8546bf_58f114a0d6d647f5ba66815e08f14a4a~mv2.jpg/v1/fill/w_250,h_250,fp_0.50_0.50,q_30,blur_30,enc_auto/8546bf_58f114a0d6d647f5ba66815e08f14a4a~mv2.webp)
![Popular topics for C++ interviews](https://static.wixstatic.com/media/8546bf_58f114a0d6d647f5ba66815e08f14a4a~mv2.jpg/v1/fill/w_454,h_341,fp_0.50_0.50,q_90,enc_auto/8546bf_58f114a0d6d647f5ba66815e08f14a4a~mv2.webp)
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
![](https://static.wixstatic.com/media/8546bf_ce5ca5ec1d26411fb82e76aa15c9ac65~mv2.jpg/v1/fill/w_250,h_250,fp_0.50_0.50,q_30,blur_30,enc_auto/8546bf_ce5ca5ec1d26411fb82e76aa15c9ac65~mv2.webp)
![Smart Pointers in C++](https://static.wixstatic.com/media/8546bf_ce5ca5ec1d26411fb82e76aa15c9ac65~mv2.jpg/v1/fill/w_454,h_341,fp_0.50_0.50,q_90,enc_auto/8546bf_ce5ca5ec1d26411fb82e76aa15c9ac65~mv2.webp)
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