上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 29 下一页
摘要: class Solution {public: int threeSumClosest(vector &num, int target) { int len = num.size(); sort(num.begin(),num.end()); i... 阅读全文
posted @ 2014-06-05 09:15 海滨银枪小霸王 阅读(114) 评论(0) 推荐(0) 编辑
摘要: class Solution {public: vector > threeSum(vector &num) { vector>result; vectorvec; int len = num.size(); //assert(l... 阅读全文
posted @ 2014-06-05 08:59 海滨银枪小霸王 阅读(103) 评论(0) 推荐(0) 编辑
摘要: /** * Definition for binary tree * struct TreeNode { * int val; * TreeNode *left; * TreeNode *right; * TreeNode(int x) : val(x), left(... 阅读全文
posted @ 2014-06-05 07:55 海滨银枪小霸王 阅读(107) 评论(0) 推荐(0) 编辑
摘要: class Solution {public: string longestCommonPrefix(vector &strs) { int size = strs.size(); if(size==0) return ""; ... 阅读全文
posted @ 2014-06-04 15:04 海滨银枪小霸王 阅读(104) 评论(0) 推荐(0) 编辑
摘要: class Solution {public: int atoi(const char *str) { bool negative = false; while(*str==' ')str++ ; if(*str=='-') ... 阅读全文
posted @ 2014-06-04 11:57 海滨银枪小霸王 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 关注官方微博关注官方微信添加到我的笔记下载有道云笔记2014年互联网IT待遇创建时间:2014-1-2 17:34修改时间:2014-1-2 17:41来源:http://blog.renren.com/share/331237347/16746027660?from=0101010202&ref=... 阅读全文
posted @ 2014-06-03 17:09 海滨银枪小霸王 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 实用的软件和命令行:screendtachtmuxbyobumultitailtppxargsparallellftpackcalursetaskwarriorsocatnetpipesiftopiptrafmtrrsynchtop/iotopnewsbeuterrsstailpowertop 阅读全文
posted @ 2014-05-29 14:11 海滨银枪小霸王 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 现在使用的软件,比较好用的:varietytweakwinesynergytexmakervirtualboxopenfetionwpsgimpfreeminddropboxsshsambagoogle earthchromefirefoxzxhtopvimflashpstree/treecurlh... 阅读全文
posted @ 2014-05-29 08:18 海滨银枪小霸王 阅读(164) 评论(0) 推荐(0) 编辑
摘要: Python模块安装一、 单文件模块直接把文件拷贝到 $python_dir/Lib二、 多文件模块,带setup.pypython setup.py install三、 egg文件1) 下载ez_setup.py,运行python ez_setup2) easy_install *.egg注:虽然... 阅读全文
posted @ 2014-05-25 23:05 海滨银枪小霸王 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 换系统14.04后在chrome下玩三国杀,总是在关键时候flash崩溃,真是坑队友啊这倒不是网络不稳或者其它原因造成的,就是flash的原因可能是chrome版本不稳,或者内置的flash插件版本太低,反正就是把我的胜率拉低了好多.之前一直用的是firefox,于是就改用这一方案1.firefox... 阅读全文
posted @ 2014-05-24 15:43 海滨银枪小霸王 阅读(119) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 29 下一页