12 2011 档案

摘要:在window->perferences->General->Appearance->Colors and Fonts->Text Font 单击change 修改 阅读全文
posted @ 2011-12-28 20:43 记录点滴 阅读(311) 评论(0) 推荐(0)
摘要:1. 全排列的数目是n !,当 n=10 时, n ! =3628800 ,接近穷举极限。 2. N个元素的子集为 2^n ,非空子集为 2^n-1 ,非空真子集为 2^n-2 ,当 n=20 时, 2^n=1048576 接近穷举极限。 3. 研究若干可重复元素所组成的序列。假设有m 种元素,则有 m^n 个长度为 n 的序列(也就是每个位置上有 m 种取法,共 n 个位置),另外,长度为 ... 阅读全文
posted @ 2011-12-19 15:33 记录点滴 阅读(2121) 评论(0) 推荐(0)
摘要:(一个学姐提到的问题~) 原文链接 http://blog.csdn.net/g5dsk/article/details/4775089 #include <iostream> using namespace std; class A { public: A() { cout << "Default construct... 阅读全文
posted @ 2011-12-13 10:34 记录点滴 阅读(1698) 评论(0) 推荐(0)
摘要:(search from google)首先打开菜单 项目->项目属性页 选择 配置属性->链接器->调试->生成调试信息 改为 是 选择 配置属性->C/C++ ->常规->调试信息格式 改为 用于“编辑并继续”的程序数据库(/ZI) 选择 配置属性->C/C++ ->优化->优化 改为 禁用(/Od) 阅读全文
posted @ 2011-12-13 10:04 记录点滴 阅读(462) 评论(0) 推荐(0)