最快的開平方 sqrt 算法,供賞析
絕妙之處,沒有使用循環。
[email protected]:~/lab$ cat main.c #include "stdio.h" float SqrtByCarmack( float number ) { int i; float x2, y; const float threehalfs = 1.5F; x2 = number * 0.5F; y = number; i = * ( int * ) &y; i = 0x5f375a86 - ( i >> 1 ); y = * ( float * ) &i; y = y * ( threehalfs - ( x2 * y * y ) ); y = y * ( threehalfs - ( x2 * y * y ) ); y = y * ( threehalfs - ( x2 * y * y ) ); return number*y; } int main() { printf("%f\n", SqrtByCarmack(998001)); printf("%f\n", SqrtByCarmack(99.99998)); printf("%f\n", SqrtByCarmack(3025)); printf("%f\n", SqrtByCarmack(1)); printf("%f\n", SqrtByCarmack(1.21)); printf("%f\n", SqrtByCarmack(1.5129)); printf("%f\n", SqrtByCarmack(1.522756)); printf("%f\n", SqrtByCarmack(1.52399025)); printf("%f\n", SqrtByCarmack(1.52413839)); printf("%f\n", SqrtByCarmack(1.52415568)); return 0; } [email protected]
本文出自 “李春利” 博客,請務必保留此出處http://990487026.blog.51cto.com/10133282/1941559
最快的開平方 sqrt 算法,供賞析