摘要: 一般递归 public static int f(int x) { if (x == 0) return 0; else return 2*f(x-1)+x*x; } 无终止递归方法 public static int bad(int n) { if (n==0) return 0; else re 阅读全文
posted @ 2017-04-05 21:53 夏天的西瓜君 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 查看mysql服务 yxm:~ # netstat -nlp Active Internet connections (only servers)Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 阅读全文
posted @ 2017-04-05 21:31 夏天的西瓜君 阅读(4548) 评论(0) 推荐(0) 编辑
摘要: SUSE11 检测系统是否安装MySQL #rpm -qa | grep -i mysql若已安装过,会出现:MySQL-server-5.0.22-0.i386MySQL-client-5.0.22-0.i386那么输入以下命令删除它:#rpm -ev MySQL-server-5.0.22-0. 阅读全文
posted @ 2017-04-05 21:29 夏天的西瓜君 阅读(7416) 评论(0) 推荐(0) 编辑