Week 06
Lecture 6 - 20.05.25
- Standard Functionality
- random number generation: C
rand()is not that good (Pseudo-random) \(\Rightarrow\)<random>in C++11+ is better - algorithms header
for_eachtransformcount_iffind_ifcopy_ifshufflesort- …
- exceptions
noexcept(for compiler optimizations)- move semantics (short overview)
- time measurements
- ex.: benchmarking move semantics
- random number generation: C