05 2017 档案

摘要:2017.05.20 一个无聊的周六,只能看别人秀恩爱.偶然间在网上看到一个有意思的方程 x^2 + (y-(x^2)(1/3))^2 = 1,据说这个方程可以绘制出一个爱心的形状.既然很无聊,就随便动手实现了. 附:opengl开发库 http://pan.baidu.com/s/1mip2pja 阅读全文
posted @ 2017-05-20 20:18 你好阿汤哥 阅读(14484) 评论(0) 推荐(0) 编辑
摘要:#include #include #include #include #include template void Dump(const T &s) { for (T::const_iterator it = s.begin(); it != s.end(); ++it) { printf("%d ", *it); } printf(... 阅读全文
posted @ 2017-05-10 16:15 你好阿汤哥 阅读(876) 评论(0) 推荐(0) 编辑
摘要:思路很简单,先分段排序,存储到临时文件中,然后合并. 使用10000个整数来模拟大数据,每次读取100个到内存中. 阅读全文
posted @ 2017-05-05 18:22 你好阿汤哥 阅读(4752) 评论(0) 推荐(1) 编辑