show/hide this revision's text 2 Reworded to be more accurate

As to "how do you calculate" Big O, this is exactly what the part of Computational complexity theory is about. For some (many) special cases you may be able to come with some simple heuristics (like multiplying loop counts for nested loops), esp. when all you want is any upper bound estimation, and you do not mind if it is too pessimistic - which I guess is probably what your question is about.

If you really want to answer your question for any algorithm the best you can do is to apply the theory. Besides of simplistic "worst case" analysis I have found Amortized analysis very useful in practice.

show/hide this revision's text 1

As to "how do you calculate" Big O, this is exactly what the Computational complexity theory is about. For some (many) special cases you may be able to come with some simple heuristics, esp. when all you want is any upper bound estimation, and you do not mind if it is too pessimistic - which I guess is probably what your question is about.

If you really want to answer your question for any algorithm the best you can do is to apply the theory. Besides of simplistic "worst case" analysis I have found Amortized analysis very useful in practice.