2015年5月28日
摘要: class Solution {public: int countPrimes(int n) { int count=0; vectormap(n+1,true); for(int i=2;i<n;i++){ if(map[i])... 阅读全文
posted @ 2015-05-28 04:38 88123 阅读(168) 评论(0) 推荐(0) 编辑