上一页 1 2 3 4 5 6 ··· 41 下一页
  2017年3月5日
摘要: rt RT 阅读全文
posted @ 2017-03-05 19:05 finallyly 阅读(150) 评论(0) 推荐(0) 编辑
  2017年2月23日
摘要: export LC_ALL=C sort -k 2,2rn p.txt > d.txt 阅读全文
posted @ 2017-02-23 14:48 finallyly 阅读(299) 评论(0) 推荐(0) 编辑
  2017年1月22日
摘要: http://blog.csdn.net/fly_yr/article/details/49815705 阅读全文
posted @ 2017-01-22 14:04 finallyly 阅读(102) 评论(0) 推荐(0) 编辑
  2017年1月6日
摘要: http://www.cprogramming.com/c++11/c++11-lambda-closures.html 阅读全文
posted @ 2017-01-06 16:02 finallyly 阅读(206) 评论(0) 推荐(0) 编辑
  2017年1月3日
摘要: 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 阅读全文
posted @ 2017-01-03 16:37 finallyly 阅读(135) 评论(0) 推荐(0) 编辑
  2016年11月30日
摘要: https://docs.python.org/3/library/struct.html#module-struct 阅读全文
posted @ 2016-11-30 15:28 finallyly 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 在运行或编写一个程序时常会遇到错误异常,这时python会给你一个错误提示类名,告诉出现了什么样的问题(Python是面向对象语言,所以程序抛出的异常也是类)。能很好的理解这些错误提示类名所代表的意思,可以帮助你在最快的时间内找到问题所在,从而解决程序上的问题是非常有帮助的。搜集了一些python最 阅读全文
posted @ 2016-11-30 11:44 finallyly 阅读(1475) 评论(0) 推荐(0) 编辑
  2016年11月29日
摘要: 1、首先登录到https://github.com注册Github帐号,并且创建一个repository。 例如:注册的github帐号名为whu-zhangmin,创建的repository名称为whuzm,那么你的仓库名为whuzm在github上的地址为: HTTPS : https://gi 阅读全文
posted @ 2016-11-29 22:00 finallyly 阅读(193) 评论(0) 推荐(0) 编辑
  2016年10月28日
摘要: 今日重构之前的代码,修改了命名空间,然后一处派生的子类定义处总是总是报error: expected class-name before '{' token,网上查了查原因,出现这种情况大致有两种情况 1. 递归保护头文件; 2. 拷贝之前的代码,#ifndef XX #define XX; 我这次 阅读全文
posted @ 2016-10-28 21:11 finallyly 阅读(7605) 评论(0) 推荐(0) 编辑
  2016年10月27日
摘要: #include int** generate(int numRows, int** columnSizes) { if (numRows == 0) { columnSizes = NULL; return NULL; } int** res = NULL; res= (int **) malloc (numRows*sizeo... 阅读全文
posted @ 2016-10-27 10:38 finallyly 阅读(146) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 41 下一页