3
votes
0answers
93 views

Wrote high-concurrency dictionary in C, would like peer review

Project Repository Details to know before looking at code (look for flaws in my approach before looking for code flaws) I have include/*.h as the headers meant to be used by consumers of the ...
1
vote
3answers
375 views

Binary search optimization: Kernighan & Ritchie 3-1

The problem I am trying to solve can be described as take binarysearch0 and rewrite it as binarysearch1 such that binarysearch1 uses a single test inside the loop instead of two. The code I used to do ...