I often here people talk about Big O which measures algorithms against each other
Does this measure clock cycles or space requirements.
If people want to contras
Typically it's the number of operations, which translates to speed. Usually, algorithms differ more in speed than in memory usage. However, you will see the O() notation used for memory use, when appropriate.