-1
私は漸近的な時間の複雑さに関して素早い質問があります。この関数の時間複雑度(big O)は以下の通りですか?私が理解していることから、それは無限の再帰のように思えます。そのようなものとして、大きなO表記は何でしょうか?時間複雑度無限再帰
def asymptoticTest (int1, int2):
if int1 < int2:
asymptoticTest(int1 + 1, int2)
elif int1 > int2:
asymptoticTest(int1 - 1, int2)
else:
asymptoticTest(int2, int1)
O(無限)? http://stackoverflow.com/questions/5627390/o-notation-o%E2%88%9E-o1に似ています –
CS Stackexchangeでおそらくもっとうまく答えられます。 http://cs.stackexchange.com/questions/56556/complexity-analysis-of-an-unsolvable-algorithmic-problem – Brandin