笔记
maingy
学习学习学习
展开
-
Java快排基于对象数组的实现
// Device类是他们的父类,int id, String name, String factory, Double price public class DeviceTest { public static void main(String[] args) { Device[] arr = new Device[6]; //多态思想 arr[0] = new Mouse(1, ...原创 2019-10-29 21:11:30 · 227 阅读 · 0 评论 -
java快速排序代码实现
代码实现: public class QuickSort{ public static void main(String[] args){ int[] arr = new int[10]; for(int i = 0; i < arr.length; i++){ //将数组遍历赋值,随机数[0, 20) arr[i] = ((int)(Math.random() * 2...原创 2019-10-29 21:01:26 · 583 阅读 · 0 评论