摘要: package com.demo02; import java.util.Arrays; /** * 快速排序 */ public class QuickSort { public static void main(String[] args) { int[] arr=new int[]{4,123 阅读全文
posted @ 2021-03-05 09:51 小胡0602 阅读(52) 评论(0) 推荐(0) 编辑
摘要: package com.demo02; import java.util.Arrays; /** * 冒泡排序 */ public class BubbleSort { public static void main(String[] args) { int[] arr=new int[]{4,12 阅读全文
posted @ 2021-03-05 09:47 小胡0602 阅读(48) 评论(0) 推荐(0) 编辑