摘要: Implement pow(x,n).Hide TagsMathBinary Search 题目很简单的。class Solution {public: double pow(double x, int n) { if(n==0) return 1; bool... 阅读全文
posted @ 2015-04-05 23:18 A_zhu 阅读(327) 评论(0) 推荐(0) 编辑