STL系列之七 快速計算x的n次冪 power()的實現

計算x的n次冪最簡單直接的方法就是相乘n次,很容易寫出程序:windows [cpp] view plain copy //計算x^n 直接乘n次 by MoreWindows( http://blog.csdn.net/MoreWindows )   int power1(int x, unsigned int n)   {       int result = 1;       while (
相關文章
相關標籤/搜索