2017年10月22日
摘要: 安装 1 关闭防火墙 永久关闭 chkconfig iptables off 2 修改主机名 vi /etc/sysconfig/network 3 修改/etc/hosts 文件 主机和域名映射 4 免密码登录 ssh-keygen -t rsa 4个回车 生成私钥和共钥, 将共钥拷贝免密目标机器 阅读全文
posted @ 2017-10-22 21:29 wheleetcode 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 1 Sliding Window Average from Data Stream public class MovingAvage { int id, size; double[] sum; public MovingAvage(int s) { size = s; sum = new doubl 阅读全文
posted @ 2017-10-22 15:15 wheleetcode 阅读(201) 评论(0) 推荐(0) 编辑