diff options
Diffstat (limited to '')
| -rw-r--r-- | README.md | 7 |
1 files changed, 7 insertions, 0 deletions
| @@ -4,6 +4,9 @@ Experiments with C++ and comparisons with C. | |||
| 4 | 4 | ||
| 5 | ## sort-benchmark | 5 | ## sort-benchmark |
| 6 | 6 | ||
| 7 | For the | ||
| 8 | [first post in the series](https://sebastiano.tronto.net/blog/2024-04-30-taming-cpp-motivation/). | ||
| 9 | |||
| 7 | Inspired by [Bert's post](https://berthub.eu/articles/posts/c++-1). | 10 | Inspired by [Bert's post](https://berthub.eu/articles/posts/c++-1). |
| 8 | 11 | ||
| 9 | Sorting an array of integers is a simple task, so C and C++ should perform | 12 | Sorting an array of integers is a simple task, so C and C++ should perform |
| @@ -17,3 +20,7 @@ C++ time for 100000000 numbers (parallel): 0.495435s | |||
| 17 | 20 | ||
| 18 | A similar benchmark is provided for sorting an arrays of pairs in a | 21 | A similar benchmark is provided for sorting an arrays of pairs in a |
| 19 | non-standard way. | 22 | non-standard way. |
| 23 | |||
| 24 | ## raii | ||
| 25 | |||
| 26 | Various small examples on constructors, destructors and related things. | ||
