摘要:
1. 批注:以 # 开头的即为批注。2.变量宣告:(有人称之为宏)注意在,在变量=前后必须要加上空白,而变量名称为大小写相异。利用 MACRO = 来取消该变数。3 := 语法 注意到,make 会将整个 Makefile 展开后,再决定变数的值。也就是说,变量的值将会是整个 Mackfile 中最后被指定的值。例: x = fooy = $(x) barx = xyz# y 的值为 xyz ba... 阅读全文
摘要:
//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... 阅读全文
摘要:
gcc是gnu compiler collection 的简称,他包含了多种语言的编译器,如C, C++, Objective-C, Objective-C++, Java, Fortran和Ada。但每种编译器的名字不一样,gcc and g++ 分别是 gnu 的 c & c++ 编译器 gcc/g++ 在执行编译工作的时候,总共需要 4 步 1. 预处理, 生成 .i 的文件 [ 调用预处... 阅读全文
摘要:
//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... 阅读全文
摘要:
//http://pat.zju.edu.cn/contests/pat-a-practise/1014 //本题需要有较好的抽象能力,把题目的问题,转化了相应的数学模型,这样就容易办了 #include #include #include #include #include using namespace std;#define INF 0xefffffftypedef struct Custo... 阅读全文
摘要:
http://www.cnblogs.com/jinxulin/p/3511298.html 机器学习算法大致可以分为三种: 1. 监督学习(如回归,分类) 2. 非监督学习(如聚类,降维) 3. 增强学习 什么是增强学习呢? 增强学习(reinforcementlearning, RL)又叫做强化学习,是近年来机器学习和智能控制领域的主要方法之一。增强学习在很多领域已经获得成功应用,比如自... 阅读全文
摘要:
#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... 阅读全文
摘要:
分两部分: 操作系统判定: Windows: WIN32 Linux: linux Solaris: __sun 编译器判定: VC: _MSC_VER GCC/G++: __GNUC__ SunCC: __SUNPRO_C和__SUNPRO_CC 阅读全文
摘要:
//并查集代码 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){ ... 阅读全文
摘要:
来源网络,作者不详!个人感觉还是很不错的推荐~~ 建议学习路径: 首先先学学编辑器,vim, emacs什么的都行。然后学make file文件,只要知道一点就行,这样就可以准备编程序了。 然后看看《C程序设计语言》K&R,这样呢,基本上就可以进行一般的编程了,顺便找本数据结构的书来看。 如果想学习UNIX/LINUX的编程,《Advanced Programing in Unix Envi... 阅读全文