会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
学院派的驴
玄门非有闭,苦学当自开
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
···
41
下一页
2017年3月5日
函数对象http://blog.csdn.net/bonchoix/article/details/8050627
摘要: rt RT
阅读全文
posted @ 2017-03-05 19:05 finallyly
阅读(174)
评论(0)
推荐(0)
2017年2月23日
Linux排序不准确的问题,用以下两行代码解决
摘要: export LC_ALL=C sort -k 2,2rn p.txt > d.txt
阅读全文
posted @ 2017-02-23 14:48 finallyly
阅读(312)
评论(0)
推荐(0)
2017年1月22日
cmake安装
摘要: http://blog.csdn.net/fly_yr/article/details/49815705
阅读全文
posted @ 2017-01-22 14:04 finallyly
阅读(110)
评论(0)
推荐(0)
2017年1月6日
C++11新特性学习
摘要: http://www.cprogramming.com/c++11/c++11-lambda-closures.html
阅读全文
posted @ 2017-01-06 16:02 finallyly
阅读(212)
评论(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
阅读(138)
评论(0)
推荐(0)
2016年11月30日
python二进制相关
摘要: https://docs.python.org/3/library/struct.html#module-struct
阅读全文
posted @ 2016-11-30 15:28 finallyly
阅读(148)
评论(0)
推荐(0)
python错误类型
摘要: 在运行或编写一个程序时常会遇到错误异常,这时python会给你一个错误提示类名,告诉出现了什么样的问题(Python是面向对象语言,所以程序抛出的异常也是类)。能很好的理解这些错误提示类名所代表的意思,可以帮助你在最快的时间内找到问题所在,从而解决程序上的问题是非常有帮助的。搜集了一些python最
阅读全文
posted @ 2016-11-30 11:44 finallyly
阅读(1527)
评论(0)
推荐(0)
2016年11月29日
github使用
摘要: 1、首先登录到https://github.com注册Github帐号,并且创建一个repository。 例如:注册的github帐号名为whu-zhangmin,创建的repository名称为whuzm,那么你的仓库名为whuzm在github上的地址为: HTTPS : https://gi
阅读全文
posted @ 2016-11-29 22:00 finallyly
阅读(208)
评论(0)
推荐(0)
2016年10月28日
坑备忘error: expected class-name before '{' token
摘要: 今日重构之前的代码,修改了命名空间,然后一处派生的子类定义处总是总是报error: expected class-name before '{' token,网上查了查原因,出现这种情况大致有两种情况 1. 递归保护头文件; 2. 拷贝之前的代码,#ifndef XX #define XX; 我这次
阅读全文
posted @ 2016-10-28 21:11 finallyly
阅读(8026)
评论(0)
推荐(0)
2016年10月27日
leetcode Pascal's triangle
摘要: #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
阅读(149)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
···
41
下一页
公告