- 博客(2)
- 收藏
- 关注
原创 配置maven
下载二进制zip压缩包 apache-maven-3.8.4-bin.zip 解压地址:E:\maven 系统变量:变量名:MAVEN_HOME 值:E:\maven Path变量:E:\maven\bin win+R cmd: mvn --version localRepository节点用于配置本地仓库,本地仓库其实起到了一个缓存的作用,它的默认地址是 C:\Users\用户名.m2 配置本地仓库 E:\maven-repository 找到这句代码,移出注释,并改成创建的仓库 IDEA配置 .
2022-02-22 10:16:16
581
原创 快速排序 JAVA代码
public class Quicksort { public void qsort(int list[], int left, int right) { int low = left; int high = right; int tmp = list[low]; if(low >= high) return;//递归终止条件 while (low < high) { while(low < high && list[high] >=
2021-07-22 19:38:53
108
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人