Unix – Shared Memory Object for IPC
Shared Memory API It’s possible to create shared memory objects on POSIX and there are different reasons to do that. For example it might be useful to share data among different processes or to read input from files of big dimension. To do that some operations are usually performed
Read More ›
Data Structures – A Fibonacci Heap implementation in C++
STL like implementation
The Fibonacci Heap is the famous data structure that allows to decrease the running time of Dijkstra’s algorithm
Read More ›