摘要:
rt RT 阅读全文
摘要:
export LC_ALL=C sort -k 2,2rn p.txt > d.txt 阅读全文
摘要:
http://blog.csdn.net/fly_yr/article/details/49815705 阅读全文
摘要:
http://www.cprogramming.com/c++11/c++11-lambda-closures.html 阅读全文
摘要:
1. http://www.tuicool.com/articles/VfQfM3 1. 下载protobuf源代码(当前最新版本为:2.5.0) #cd /opt #wget https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz 2 阅读全文
摘要:
https://docs.python.org/3/library/struct.html#module-struct 阅读全文
摘要:
在运行或编写一个程序时常会遇到错误异常,这时python会给你一个错误提示类名,告诉出现了什么样的问题(Python是面向对象语言,所以程序抛出的异常也是类)。能很好的理解这些错误提示类名所代表的意思,可以帮助你在最快的时间内找到问题所在,从而解决程序上的问题是非常有帮助的。搜集了一些python最 阅读全文
摘要:
1、首先登录到https://github.com注册Github帐号,并且创建一个repository。 例如:注册的github帐号名为whu-zhangmin,创建的repository名称为whuzm,那么你的仓库名为whuzm在github上的地址为: HTTPS : https://gi 阅读全文
摘要:
今日重构之前的代码,修改了命名空间,然后一处派生的子类定义处总是总是报error: expected class-name before '{' token,网上查了查原因,出现这种情况大致有两种情况 1. 递归保护头文件; 2. 拷贝之前的代码,#ifndef XX #define XX; 我这次 阅读全文
摘要:
#include int** generate(int numRows, int** columnSizes) { if (numRows == 0) { columnSizes = NULL; return NULL; } int** res = NULL; res= (int **) malloc (numRows*sizeo... 阅读全文