0
有人可以解釋二次方程v2是一個二次方程和任何其他小函數在其他函數中可能很重要嗎?我認爲通過的變量必須被調用兩次,因爲它是二次的。我需要一些幫助來理解簡單的複雜性
def linear(L):
index = 0
while index < len(L):
index = index + 1
def linear_v2(L):
index1 = 0
while index1 < len(L):
index2 = 0
while index2 < 1000000:
index2 += 1
index1 += 1
def quadratic(L):
index1 = 0
while index1 < len(L):
index2 = 0
while index2 < len(L):
index2 += 1
index1 += 1
def quadratic_v2(L):
index1 = 0
while index1 < len(L):
index2 = 0
while index2 < index1:
index2 += 1
index1 += 1
def cubic(L):
index = 0
while index < len(L):
index2 = 0
while index2 < len(L):
index3 = 0
while index3 < len(L):
index3 += 1
index2 += 1
index +=1
def log(L):
index = 0
while 2 ** index < len(L):
index += 1
def exponential(L):
index = 0
while index < 2 ** len(L):
index +=1
請正確格式化您的代碼。刪除後面的勾號,突出顯示代碼,然後按ctrl + K。並請詳細解釋您的問題。 – Carcigenicate