何が必要なのは、ここではいくつかの例があり、あなたは私がビッグ-O表記使用して、その複雑さを見つけることを願って、それを決定する方法についての説明を次のとおりです。私は大きな-O表記
For each of the following, find the dominant term(s) having the sharpest increase in n and give the time complexity using Big-O notation.
Consider that we always have n>m.
Expression Dominant term(s) O(…)
5+ 0.01n^3 + 25m^3
500n +100n^1.5 + 50nlogn
0.3n+ 5n^1.5 +2.5n^1.75
n^2logn +n(log2m)^2
mlog3n +nlog2n
50n+5^3 m + 0.01n^2
Big Oの説明がいくつかありますが、読んだり読んだりしたりすることはできません。 [Big O、あなたはどのように計算しますか?](http://stackoverflow.com/questions/3255/big-o-how-do-you-calculate-approximate-it?rq=1)と[Big O ](http://stackoverflow.com/questions/487258/plain-english-explanation-of-big-o?rq=1)。残りのポーズされた質問は、あなたの宿題のように見えるものをここの誰かがすることです。 – KevinO
理論的な質問として、コンピュータサイエンスなどのサイトに属しているため、この質問を議論の対象外としています.SE –