博客园 首页 私信博主 显示目录 隐藏目录 管理 动画
摘要: 1 package t0505; 2 import java.util.Arrays; 3 4 /** 5 * @author LU 6 * 7 * 2021年5月5日 8 */ 9 public class QuickSort1 { 10 public static void swap(int [ 阅读全文
posted @ 2021-05-06 21:00 CHANG_09 阅读(69) 评论(0) 推荐(0)
摘要: 1 // Note:Your choice is C++ IDE 2 #include <stdio.h> 3 void swap(int a[],int i,int j) 4 { 5 int temp=a[i]; 6 a[i]=a[j]; 7 a[j]=temp; 8 } 9 void subSo 阅读全文
posted @ 2021-05-06 20:59 CHANG_09 阅读(104) 评论(0) 推荐(0)