2015年3月10日
摘要: 求n!。当n很大的时候,会超出整数的范围。这里用数组来进行高精阶乘。a[1]是个位,a[2]是十位......依次类推。每次要乘一个数的时候,就从个位(即a[1])开始乘这个数,>10的时候要%10再进位。 1 #include 2 #include 3 const int N=100000; 4 ... 阅读全文
posted @ 2015-03-10 21:00 咋是你呀~ 阅读(156) 评论(0) 推荐(0) 编辑
摘要: #include#includeusing namespace std;struct cmp //重写优先关系 从小到大{ bool operator () (const int a, const int b) const { return a%10 > b%1... 阅读全文
posted @ 2015-03-10 20:51 咋是你呀~ 阅读(263) 评论(0) 推荐(0) 编辑