02 2012 档案
LDA模型学习
摘要:导师让我多看一些ML的模型,最近打算先下学习LDA模型先找一些资料建议学习LDA模型的步骤http://www.xuwenhao.com/2011/03/20/suggestions-for-programmers-to-learn-lda/计划学习步骤:1.paper:Probabilistic Topic ModelsGibbs Sampling for the Uninitiated2. source codeProbabilistic Topic Model 阅读全文
posted @ 2012-02-27 09:38 月神夜 阅读(468) 评论(0) 推荐(0)
Financial Management ZOJ 1048
摘要:Financial Management就是个求平均数的#include <iostream>#include <iomanip>using namespace std;int main(){ const int k=12; float month,sum=0; int i; for(i=0;i<k;i++){ cin>>month; sum+=month; } cout<<"$"<<setiosflags(ios::fixed)<<setprecision(2)<<sum/(floa 阅读全文
posted @ 2012-02-26 19:33 月神夜 阅读(141) 评论(0) 推荐(0)
Gridland
摘要:Background For years, computer scientists have been trying to find efficient solutions to different computing problems. For some of them efficient algorithms are already available, these are the "easy" problems like sorting, evaluating a polynomial or finding the shortest path in a graph. 阅读全文
posted @ 2012-02-26 16:55 月神夜 阅读(334) 评论(0) 推荐(0)
const的读书笔记
摘要:初看C++ primer,const关键字的内容林林总总,记录一下。1. 定义const对象:把一个对象定义为常量const int bufSize=512;bufSize=0;//错误2. 被const修饰的对象默认为文件的局部变量:只能在定义该对象的文件中使用,其他文件不可访问。除非显示的指定此const对象为extern。//file_1.ccextern const int bufSize=fcn();//file_2.ccextern const int bufSize;//使用file_1里的bufSize3. const引用:指向const对象的引用,即对于const对象,其引用 阅读全文
posted @ 2012-02-24 10:46 月神夜 阅读(195) 评论(0) 推荐(0)
Drexel PhD 电话面试
摘要:刚刚结束了Drexel的电话面试好几个老师一起,好像很欢乐,互相大笑着问了几个简单常规的问题,都是导师之前交代过的1. Research Interest2. Describe your work in detail3. Why you want to pursue a PhD?4. Why you choose Drexel5. Which professor you would like to study with然后就问了any question总之就是很自由简单的几个问题,15分钟左右,就over了期待结果啊 阅读全文
posted @ 2012-02-15 23:28 月神夜 阅读(522) 评论(0) 推荐(0)
排序算法学习
摘要:温习算法知识,学学C++,打算从排序算法开始书目包括:《计算机算法设计与分析》王晓东《数据结构》严蔚敏暂时写这么多,等代码写好贴出来~~VS2005出现: 无法找到“XXX.exe”的调试信息,或者调试信息不匹配。未使用调试信息生成二进制文件。这一错误,在网上找到的解决方案为:如果创建空项目,需要对项目属性进行如下配置:首先打开菜单 项目->项目属性页 1。选择 配置属性->链接器->调试->生成调试信息 改为 是 2。选择 配置属性->C/C++ ->常规->调试信息格式 改为 用于“编辑并继续”的程序数据库(/ZI) 3。选择 配置属性->C 阅读全文
posted @ 2012-02-10 17:30 月神夜 阅读(426) 评论(0) 推荐(0)