Summary: Analyzing and Measuring Performance
Understand how to evaluate and improve the performance of C++ programs by mastering algorithm efficiency using big O notation, measuring latency and throughput, and using profiling tools to identify and optimize hot spots in your code.
We'll cover the following...
We'll cover the following...
In this chapter, you learned how to compare the efficiency of algorithms by using big O notation. You now know that the C++ ...