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