show/hide this revision's text 2 deleted 1 characters in body

Your underestimate the O(1). It means that there exists a constant C>0 such that time to compute a problem is limited to this C.

What you ignore is that the actual value of C can be large and it can (and mosttly mostly is) different for different algorithms. You may have two algorithms (or computers - doesn't matter) both with O(1) but in one this C may be billion times bigger that in another - then the latter will be much slower and perhaps very slow in terms of time.

show/hide this revision's text 1 [made Community Wiki]

Your underestimate the O(1). It means that there exists a constant C>0 such that time to compute a problem is limited to this C.

What you ignore is that the actual value of C can be large and it can (and mosttly is) different for different algorithms. You may have two algorithms (or computers - doesn't matter) both with O(1) but in one this C may be billion times bigger that in another - then the latter will be much slower and perhaps very slow in terms of time.