摘要: ##代码已经编译成功,大家放心看 import java.util.Arrays; import java.util.Random; public class quickSort { public static void main(String[] args) { int[] arr={5,4,3, 阅读全文
posted @ 2021-02-19 23:38 ForMei 阅读(54) 评论(0) 推荐(0)
摘要: ##最近正在准备面试,复习到排序算法,堆排序也是比较常见的面试题了。 import java.util.Arrays; public class heapSort { public static void main(String []args){ int []arr = {9,8,7,6,5,4}; 阅读全文
posted @ 2021-02-19 23:11 ForMei 阅读(55) 评论(0) 推荐(0)
摘要: ##遇到这种情况直接快捷建 :ctrl+alter+shift+s 快捷键打开项目配置,右键选中项目,点击source [ ]() 阅读全文
posted @ 2021-02-19 11:01 ForMei 阅读(198) 评论(0) 推荐(0)