cheng_you_know

学而时习之!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页

2014年1月15日

摘要: 1. 批注:以 # 开头的即为批注。2.变量宣告:(有人称之为宏)注意在,在变量=前后必须要加上空白,而变量名称为大小写相异。利用 MACRO = 来取消该变数。3 := 语法 注意到,make 会将整个 Makefile 展开后,再决定变数的值。也就是说,变量的值将会是整个 Mackfile 中最后被指定的值。例: x = fooy = $(x) barx = xyz# y 的值为 xyz ba... 阅读全文
posted @ 2014-01-15 17:46 cheng_you_know 阅读(724) 评论(0) 推荐(1) 编辑

摘要: //http://wg2009perfect.blog.163.com/blog/static/127997663200992995834510/ 在Linux下写c/c++程序的,一定都会用的,下面是一个比较简单的Makefile文件,也是一个比较通俗的: OBJECT = main.o App.o GetPwd.o md5.o TEA.o QQSession.o QQ.o PcapBase.o... 阅读全文
posted @ 2014-01-15 17:33 cheng_you_know 阅读(384) 评论(0) 推荐(1) 编辑

摘要: gcc是gnu compiler collection 的简称,他包含了多种语言的编译器,如C, C++, Objective-C, Objective-C++, Java, Fortran和Ada。但每种编译器的名字不一样,gcc and g++ 分别是 gnu 的 c & c++ 编译器 gcc/g++ 在执行编译工作的时候,总共需要 4 步 1. 预处理, 生成 .i 的文件 [ 调用预处... 阅读全文
posted @ 2014-01-15 17:10 cheng_you_know 阅读(1764) 评论(0) 推荐(1) 编辑

2014年1月14日

摘要: //http://pat.zju.edu.cn/contests/pat-a-practise/1016#include #include #include #include #include #include using namespace std;#define INF 0xefffffftypedef struct Phone_Record{ string name; int month; int day; int hour; int minute; string status; int total;};bool cpm(Phone_Record... 阅读全文
posted @ 2014-01-14 22:40 cheng_you_know 阅读(451) 评论(0) 推荐(0) 编辑

摘要: //http://pat.zju.edu.cn/contests/pat-a-practise/1014 //本题需要有较好的抽象能力,把题目的问题,转化了相应的数学模型,这样就容易办了 #include #include #include #include #include using namespace std;#define INF 0xefffffftypedef struct Custo... 阅读全文
posted @ 2014-01-14 20:44 cheng_you_know 阅读(168) 评论(0) 推荐(0) 编辑

2014年1月13日

摘要: http://www.cnblogs.com/jinxulin/p/3511298.html 机器学习算法大致可以分为三种: 1. 监督学习(如回归,分类) 2. 非监督学习(如聚类,降维) 3. 增强学习 什么是增强学习呢? 增强学习(reinforcementlearning, RL)又叫做强化学习,是近年来机器学习和智能控制领域的主要方法之一。增强学习在很多领域已经获得成功应用,比如自... 阅读全文
posted @ 2014-01-13 21:20 cheng_you_know 阅读(239) 评论(0) 推荐(0) 编辑

摘要: #include #include #include using namespace std;bool prime(int num){ int i; if(num ==0 || num ==1) return false; for(i=2;i>n) { if(n>d; if(prime(n) && prime(convert(n,d... 阅读全文
posted @ 2014-01-13 10:51 cheng_you_know 阅读(125) 评论(0) 推荐(0) 编辑

摘要: 分两部分: 操作系统判定: Windows: WIN32 Linux: linux Solaris: __sun 编译器判定: VC: _MSC_VER GCC/G++: __GNUC__ SunCC: __SUNPRO_C和__SUNPRO_CC 阅读全文
posted @ 2014-01-13 10:32 cheng_you_know 阅读(271) 评论(0) 推荐(0) 编辑

2014年1月12日

摘要: //并查集代码 zju pat1013 http://pat.zju.edu.cn/contests/pat-a-practise/1013 #include using namespace std;int road[500000][2];int city[1005];void init_union(int n){ int i; for(i = 1 ;i>n>>m>>k){ ... 阅读全文
posted @ 2014-01-12 21:55 cheng_you_know 阅读(147) 评论(0) 推荐(0) 编辑

2013年12月23日

摘要: 来源网络,作者不详!个人感觉还是很不错的推荐~~ 建议学习路径: 首先先学学编辑器,vim, emacs什么的都行。然后学make file文件,只要知道一点就行,这样就可以准备编程序了。 然后看看《C程序设计语言》K&R,这样呢,基本上就可以进行一般的编程了,顺便找本数据结构的书来看。 如果想学习UNIX/LINUX的编程,《Advanced Programing in Unix Envi... 阅读全文
posted @ 2013-12-23 10:41 cheng_you_know 阅读(291) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 10 ··· 18 下一页