plf_nanotimer in fffaraz/awesome-cpp

A simple C++ 03/11/etc timer class for ~microsecond-precision cross-platform benchmarking. The implementation is as limited and as simple as possible to create the lowest amount of overhead.

updated at May 6, 2024, 8:53 a.m.

C++

6 +0

125 +1

12 +0

GitHub
plf_colony in fffaraz/awesome-cpp

An unordered C++ data container providing fast iteration/insertion/erasure while maintaining pointer/iterator validity to non-erased elements regardless of insertions/erasures. Provides higher-performance than std:: library containers for high-modification scenarios with unordered data.

updated at April 29, 2024, 1:12 a.m.

C++

19 +0

389 +0

33 +0

GitHub
plf_list in fffaraz/awesome-cpp

A drop-in replacement for std::list with 293% faster insertion, 57% faster erasure, 17% faster iteration and 77% faster sorting on average. 20-24% speed increase in use-case testing.

updated at April 21, 2024, 1:12 a.m.

C++

12 +0

141 +0

19 +0

GitHub
plf_stack in fffaraz/awesome-cpp

A C++ data container replicating std::stack functionality but with better performance than standard library containers in a stack context.

updated at April 21, 2024, 1:08 a.m.

C++

6 +0

60 +0

7 +0

GitHub
plf_indiesort in fffaraz/awesome-cpp

A sort wrapper enabling both use of random-access sorting on non-random access containers, and increased performance for the sorting of large types.

updated at Dec. 9, 2023, 11:12 p.m.

C++

4 +0

18 +0

2 +0

GitHub