C++
文章平均质量分 53
qq_21153951
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
POJ 1423 Big Number
朴素方法求解会超时,所以采用斯特林近似方法求解; n!近似等于sqrt(2*PI*n)*(n/e)^n。然后取对数后上取整。 // codingEx.cpp : Defines the entry point for the console application. // author: momogary1204 //#include "stdafx.h" #include #i原创 2015-10-14 14:43:57 · 192 阅读 · 0 评论 -
POJ 1007 DNA Sorting
// codingEx.cpp : Defines the entry point for the console application. // author : momogary1204 //#include "stdafx.h" #include #include #include #include #include using namespace std;原创 2015-10-14 11:44:45 · 178 阅读 · 0 评论 -
POJ 2487 Stamps
插入排序练习题/sort函数练习 // codingEx.cpp : Defines the entry point for the console application. // author: momogary1204 #include "stdafx.h" #include #include #include #include using namesp原创 2015-10-15 14:30:10 · 273 阅读 · 0 评论
分享