桑海

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年12月9日

摘要: #include<iostream>using namespace std;int power(int x, int n){//分治法,时间复杂度:lgn if(x == 0) { if(n == 0) cout << "WRONG INPUT: SIGNIGICANT!!!" << endl; return 0; } if... 阅读全文
posted @ 2012-12-09 14:02 桑海 阅读(286) 评论(0) 推荐(0) 编辑