C/C++
文章平均质量分 84
qianyun6
这个作者很懒,什么都没留下…
展开
-
POJ 1001 Exponentiation解题报告
<br />DescriptionProblems involving the computation of exact values of very large magnitude and precision are common. For example, the computation of the national debt is a taxing experience for many computer systems. <br /><br />This problem requi原创 2010-10-10 18:17:00 · 871 阅读 · 0 评论 -
在Visual Studio 2013中编译GNU Scientific Library (GSL) v1.16
到GSL官网(https://www.gnu.org/software/gsl/)下载GSL 1.16的源码。原创 2014-08-21 14:55:18 · 7452 阅读 · 7 评论 -
Morgan Stanley Programming Constest 2014题目Train
思路本题根据题干描述并不是很清楚,但根据实例数据原创 2014-04-05 14:36:34 · 679 阅读 · 0 评论 -
Morgan Stanley Programming Constest 2014题目Free Fall
题目原文已经找不到了,大体的内容如下原创 2014-04-15 17:14:58 · 823 阅读 · 0 评论 -
vs2010 中包含路径和库路径设置
为了更好的体现程序与库的独立性,vc++2010 中库路径设置不再采用全局设置,就是说在每个工程中都可以有自己独立的库路径设置,当然你如果不设置,那默认就是vs2010自己的库路径。如果你安装了platform sdk,它也会自动检测并帮你添加到库路径。但是如果你需要用到第三方库,应该怎么设置呢?很简单,新的设置点不再是工具--选项--工程和解决方案-VC++ Directories;转载 2011-10-17 10:36:04 · 3928 阅读 · 0 评论 -
Visual Studio 2010中Dos窗口一闪即逝,不显示任意键退出?
<br /> 现在VS2010新建的空工程,默认不会在Ctrl+F5的时候出现“按任意键退出”了,需要你手动给工程做如下设置:<br /> 右键单击工程->属性->配置属性->链接器->系统->子系统,选择下拉的第一个“控制台 (/SUBSYSTEM:CONSOLE)”就可以了。<br /><br /><br />转自:http://zhidao.baidu.com/question/175062964.html转载 2010-10-25 13:09:00 · 6573 阅读 · 1 评论 -
boost 1.45.0 的安装及测试(Visual Studio 2010)
获取boosthttp://sourceforge.net/projects/boost/files/boost/1.45.0/下载.7z或.zip都可以。 安装:解压缩压缩包到你希望的位置。(注意尽量不要先解压再移动文件夹,因为解压后会有几万个文件,虽然总的大小只有几百MB的样子,但是移动一次绝对比几GB的单个文件还慢。)打开VS2010 ,工具->Visual Studio的命令提示 进入命令行,用cd命令切换到解压后boost的根目录。建立bjambootstrap编译boost./bjam --st原创 2010-12-06 10:59:00 · 5048 阅读 · 1 评论 -
POJ 1002 4873279
DescriptionBusinesses like to have memorable telephone numbers. One way to make a telephone number memorable is to have it spell a memorable word or phrase. For example, you can call the University of Waterloo by dialing the memorable TUT-GLOP. Sometimes o原创 2010-10-12 16:31:00 · 1418 阅读 · 0 评论 -
Effective C++学习系列一:拷贝构造函数与赋值符号的调用时机
#includeusing namespace std;class Integer{public: int integer; Integer() { integer = 0; cout << "Default constructor called with this pointer " (this) << std::endl; } Integer(int i原创 2014-12-18 19:24:27 · 581 阅读 · 0 评论