- 博客(2)
- 问答 (2)
- 收藏
- 关注
原创 快速计算A^B的算法
int pow(int a , int b) { int result = 1; while(b) { if(b & 1) result *=a; a = a * a; b >>= 1; } return result; }
2017-02-09 14:36:13 670
翻译 ITL对cloud computing的定义
Cloud computing is a model for enabling ubiquitous, convenient, on-demand network access to a shared pool of configurable computing resources (e.g., networks, servers, storage, applications, and servi
2017-02-07 17:09:53 709
空空如也
如何用spark Scala写pagerank?
2016-01-13
turbo prolog 为什么不能在win10上运行
2015-11-07
TA创建的收藏夹 TA关注的收藏夹
TA关注的人