摘要: https://blog.csdn.net/slow_wakler/article/details/54895508 http://www.runoob.com/design-pattern/chain-of-responsibility-pattern.html https://www.cnblo 阅读全文
posted @ 2018-06-05 22:45 阿孜 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 1,快速排序 非常高效但不稳定的排序算法,平均复杂度onlog(n),最坏o(n2) public class Test1Practice { public static void quickSort(int[] arr,int low,int high){ int start = low; int 阅读全文
posted @ 2018-06-05 22:43 阿孜 阅读(105) 评论(0) 推荐(0) 编辑
摘要: python 1, Mac 系统自带的python路径 /System/Library/Frameworks/Python.framework/Version里面存放多个版本 可通过:启动python import sys print sys.path 查看路径 /System/Library/Fr 阅读全文
posted @ 2018-06-05 22:41 阿孜 阅读(229) 评论(0) 推荐(0) 编辑
摘要: selenium 1,selenium ide mac 安装 打开firefox浏览器,进入下面网址https://addons.mozilla.org/en-US/firefox/addon/selenium-ide/,点击add to firefox即可。 可添加到工具栏。 2,selenium 阅读全文
posted @ 2018-06-05 22:39 阿孜 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 1, cd 进入系统根目录 cd / 进入当前用户的主目录 cd ~ 进入当前目录的上一级目录 cd .. 跳转到指定目录,从根目录开始 cd /apps/ 2, pwd 查看当前工作目录的完整路径 3,tail -f test.log 将文件的最尾部内容显示在屏幕上,并且不断刷新 4,touch 阅读全文
posted @ 2018-06-05 22:37 阿孜 阅读(95) 评论(0) 推荐(0) 编辑