摘要: CentOS 7.0默认使用的是firewall作为防火墙,使用iptables必须重新设置一下 1、直接关闭防火墙 systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewal 阅读全文
posted @ 2018-03-01 17:37 碳素墨水-君临天下圣王之道 阅读(107) 评论(0) 推荐(0)
摘要: 1 @Test //二叉树(二分法)查询数组元素的位置; 2 public void test6() { 3 int a[] = {4,5,6,8,10,20,30};//二叉树的使用条件是:有序的数组元素;易错点:注意二叉树的适用条件; 4 int left = 0; 5 int middle; 6 in... 阅读全文
posted @ 2017-10-31 21:57 碳素墨水-君临天下圣王之道 阅读(367) 评论(1) 推荐(0)