2018年1月4日

Intellij IDEA中部署tomcat遇到的问题

摘要: 当打开Intellij IDEA这个软件的时候,安装tomcat,接着继续在Intellij IDEA这个软件中部署tomcat,这样即使按照正确的部署步骤,也还是会出现the selected directory is not a valid Tomcat home这样的提示,主要问题是Intel 阅读全文

posted @ 2018-01-04 10:50 Andyagg 阅读(432) 评论(0) 推荐(0)

2017年10月30日

排序算法之插入排序

摘要: 插入排序的原理: 代码实现Java(从小到大): public static void InsertionSort(int[] array) { int n = array.Length; //从第二个元素开始 for (int i = 1; i < n; i++) { //从第i个元素开始,一次和 阅读全文

posted @ 2017-10-30 21:23 Andyagg 阅读(153) 评论(0) 推荐(0)

排序算法之选择排序

摘要: 选择排序的原理: 选择排序很简单,他的步骤如下: public class Sort { public static void SelectionSort(int[] array) { int n = array.Length; for (int i = 0; i < n; i++) { int m 阅读全文

posted @ 2017-10-30 21:13 Andyagg 阅读(140) 评论(0) 推荐(0)

最大似然估计

摘要: 最大似然法(Maximum Likelihood,ML)也称为最大概似估计,也叫极大似然估计,是一种具有理论性的点估计法,此方法的基本思想是:当从模型总体随机抽取n组样本观测值后,最合理的参数估计量应该使得从模型中抽取该n组样本观测值的概率最大,而不是像最小二乘估计法旨在得到使得模型能最好地拟合样本 阅读全文

posted @ 2017-10-30 21:06 Andyagg 阅读(1067) 评论(0) 推荐(0)

导航