From what I understand
- T(n) represents the exact time for an algorithm of a problem with size n,
- Θ(n) represents the asymptotic behavior of an algorithm as n approaches infinity (whatever that means.) There's something about I lower and upper bound that I remember as well.
- O(n) represents the time complexity of an algorithm.
To me, these three things (not even sure what to call them, or if they are all even the same thing) are extremely similar. I could not explain the difference between the three if my life depended on it. Anybody wiser and able to explain it a bit more?
