Heim >Backend-Entwicklung >Python-Tutorial >Finden Sie die Quadratwurzel mit der Halbierungsmethode.
Verwenden Sie die Halbierungsmethode, um die Quadratwurzel zu ermitteln.
def sqrtBI(x, epsilon): assert x>0, 'X must be non-nagtive, not ' + str(x) assert epsilon > 0, 'epsilon must be postive, not ' + str(epsilon) low = 0 high = x guess = (low + high)/2.0 counter = 1 while (abs(guess ** 2 - x) > epsilon) and (counter <= 100): if guess ** 2 < x: low = guess else : high = guess guess = (low + high)/2.0 counter += 1 return guess
Überprüfen Sie es.
>>> sqrtBI(2,0.000001)
>>> 1.41421365738
Die obige Methode wird Probleme haben, wenn X
>>> sqrtBI(0.25,0.000001)
>>> 0.25
Wie findet man also die Quadratwurzel von 0,25?
Ändern Sie einfach den obigen Code leicht. Beachten Sie die Zeilen 6 und 7 des Codes.
def sqrtBI(x, epsilon): assert x>0, 'X must be non-nagtive, not ' + str(x) assert epsilon > 0, 'epsilon must be postive, not ' + str(epsilon) low = 0 high = max(x, 1.0) ## high = x guess = (low + high)/2.0 counter = 1 while (abs(guess ** 2 - x) > epsilon) and (counter <= 100): if guess ** 2 < x: low = guess else : high = guess guess = (low + high)/2.0 counter += 1 return guess
Überprüfen Sie es:
>>> sqrtBI(0.25,0.000001)
>>> 0.5