摘要: 要想在计算机领域达到一个较高的水准,是必须掌握tcp/ip.因为是该协议构成了我们丰富多彩的网络世界。人和人交流靠语言,电脑和电脑之间的交流靠通信协议。ssl加密算法和MD5加密算法 阅读全文
posted @ 2014-10-27 21:02 雄哼哼 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 常用的UNIX指令:1.文件和目录操作ls –l 列出当前目录下的所有内容(文件\文件夹)pwd 显示出当前目录的名称cd 改变当前操作的目录who 显示当前用户名clear 清屏mkdir 新建一个目录touch 新建一个文件(文件不存在才会新建)open 打开一个文件\文件夹2.过滤器fi... 阅读全文
posted @ 2014-10-27 18:55 雄哼哼 阅读(466) 评论(0) 推荐(0) 编辑
摘要: Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3,Return [1,3,3,1].Note:Could you optimize your algorithm to use... 阅读全文
posted @ 2014-10-27 16:36 雄哼哼 阅读(170) 评论(0) 推荐(0) 编辑
摘要: Implement strStr().Returns a pointer to the first occurrence of needle in haystack, or null if needle is not part of haystack.思路:KMP算法算是忘得一干二净,回头有时间看看... 阅读全文
posted @ 2014-10-27 09:21 雄哼哼 阅读(224) 评论(0) 推荐(0) 编辑