文件名称:javasort
-
所属分类:
- 标签属性:
- 上传时间:2012-11-16
-
文件大小:457.08kb
-
已下载:0次
-
提 供 者:
-
相关连接:无下载说明:别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容来自于网络,使用问题请自行百度
(1)写一个final参数类M,包括比较次数、交换次数、探测次数属性,并重写构造器和toString方法。
(2)写一个抽象类A,其中包括要排序的数据。提供三个final方法,分别完成比较、探测、交换操作的同时,正确改变私有的M类对象成员的相关属性。并提供一个虚方法doSort,同时提供一个final方法sort(先设置M对象初值,然后调用doSort方法,返回M对象引用)
(3)写三个采用不同方法排序的A类的派生类A1,A2,A3
(4)写一个测试类作为主类,分别生成A1,A2,A3的对象并调用sort方法,显示三个方法在排序时候的性能参数。
(5)谈谈这种类设计的合理性以及可以改进之处。
(6) 给前面的排序测试算法增加排序可视化功能,提示:初始化排序类的时候用图形显示排序的数据,进行移动或者比较等操作时,用图形演示动作影响的操作。(请思考如何防止演示过快)。
-(1) write a final parameters of type M, including the number of comparisons, the exchange frequency, detecting the number of attributes, and override the constructor and toString methods.
(2) to write an abstract class A, which would include the sort of data. Provides three final methods of the respective comparison, detection, while the exchange operation, the right to change the private member of M-class object associated attributes. And to provide a virtual method doSort, while providing a final method sort (first set the initial value of M objects, then call doSort method returns an object reference M)
(3) three different ways to write sort of A class derived class A1, A2, A3
(4) Write a test class as main class, were generated A1, A2, A3 and call the sort method of the object, indicating when the three methods in order of performance parameters.
(5) to talk about this kind of design is reasonable and can be improved.
(6) to increase the previous sorting algorithm sorting
(2)写一个抽象类A,其中包括要排序的数据。提供三个final方法,分别完成比较、探测、交换操作的同时,正确改变私有的M类对象成员的相关属性。并提供一个虚方法doSort,同时提供一个final方法sort(先设置M对象初值,然后调用doSort方法,返回M对象引用)
(3)写三个采用不同方法排序的A类的派生类A1,A2,A3
(4)写一个测试类作为主类,分别生成A1,A2,A3的对象并调用sort方法,显示三个方法在排序时候的性能参数。
(5)谈谈这种类设计的合理性以及可以改进之处。
(6) 给前面的排序测试算法增加排序可视化功能,提示:初始化排序类的时候用图形显示排序的数据,进行移动或者比较等操作时,用图形演示动作影响的操作。(请思考如何防止演示过快)。
-(1) write a final parameters of type M, including the number of comparisons, the exchange frequency, detecting the number of attributes, and override the constructor and toString methods.
(2) to write an abstract class A, which would include the sort of data. Provides three final methods of the respective comparison, detection, while the exchange operation, the right to change the private member of M-class object associated attributes. And to provide a virtual method doSort, while providing a final method sort (first set the initial value of M objects, then call doSort method returns an object reference M)
(3) three different ways to write sort of A class derived class A1, A2, A3
(4) Write a test class as main class, were generated A1, A2, A3 and call the sort method of the object, indicating when the three methods in order of performance parameters.
(5) to talk about this kind of design is reasonable and can be improved.
(6) to increase the previous sorting algorithm sorting
(系统自动生成,下载前可以参看下载内容)
下载文件列表
java实验二(陈新杰20072102321)/可运行软件/MainSortApplication.jar
java实验二(陈新杰20072102321)/可运行软件/startForWin.bat
java实验二(陈新杰20072102321)/实验报告/java排序程序实验报告.doc
java实验二(陈新杰20072102321)/测试数据/sortTest.txt
java实验二(陈新杰20072102321)/源代码/MySorts/.classpath
java实验二(陈新杰20072102321)/源代码/MySorts/.project
java实验二(陈新杰20072102321)/源代码/MySorts/.settings/org.eclipse.core.resources.prefs
java实验二(陈新杰20072102321)/源代码/MySorts/.settings/org.eclipse.jdt.core.prefs
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/business/DataControl.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication$1.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication$2.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication$3.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication$SortThread.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/BubbleSort.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/InsertSort.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/Parameter.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/SelectSort.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/Sort.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/util/FileUtil.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/util/GenericFileFilter.class
java实验二(陈新杰20072102321)/源代码/MySorts/juniversalchardet-1.0.3.jar
java实验二(陈新杰20072102321)/源代码/MySorts/manifest.mf
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/business/DataControl.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/mainface/MainSortApplication.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/BubbleSort.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/InsertSort.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/Parameter.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/SelectSort.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/Sort.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/util/FileUtil.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/util/GenericFileFilter.java
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/business
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/util
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/business
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/mainface
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/util
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com
java实验二(陈新杰20072102321)/源代码/MySorts/src/com
java实验二(陈新杰20072102321)/源代码/MySorts/.settings
java实验二(陈新杰20072102321)/源代码/MySorts/bin
java实验二(陈新杰20072102321)/源代码/MySorts/src
java实验二(陈新杰20072102321)/源代码/MySorts
java实验二(陈新杰20072102321)/可运行软件
java实验二(陈新杰20072102321)/实验报告
java实验二(陈新杰20072102321)/测试数据
java实验二(陈新杰20072102321)/源代码
java实验二(陈新杰20072102321)
java实验二(陈新杰20072102321)/可运行软件/startForWin.bat
java实验二(陈新杰20072102321)/实验报告/java排序程序实验报告.doc
java实验二(陈新杰20072102321)/测试数据/sortTest.txt
java实验二(陈新杰20072102321)/源代码/MySorts/.classpath
java实验二(陈新杰20072102321)/源代码/MySorts/.project
java实验二(陈新杰20072102321)/源代码/MySorts/.settings/org.eclipse.core.resources.prefs
java实验二(陈新杰20072102321)/源代码/MySorts/.settings/org.eclipse.jdt.core.prefs
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/business/DataControl.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication$1.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication$2.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication$3.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication$SortThread.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface/MainSortApplication.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/BubbleSort.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/InsertSort.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/Parameter.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/SelectSort.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts/Sort.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/util/FileUtil.class
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/util/GenericFileFilter.class
java实验二(陈新杰20072102321)/源代码/MySorts/juniversalchardet-1.0.3.jar
java实验二(陈新杰20072102321)/源代码/MySorts/manifest.mf
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/business/DataControl.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/mainface/MainSortApplication.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/BubbleSort.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/InsertSort.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/Parameter.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/SelectSort.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts/Sort.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/util/FileUtil.java
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/util/GenericFileFilter.java
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/business
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/mainface
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/sorts
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1/util
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/business
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/mainface
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/sorts
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1/util
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com/shui1
java实验二(陈新杰20072102321)/源代码/MySorts/src/com/shui1
java实验二(陈新杰20072102321)/源代码/MySorts/bin/com
java实验二(陈新杰20072102321)/源代码/MySorts/src/com
java实验二(陈新杰20072102321)/源代码/MySorts/.settings
java实验二(陈新杰20072102321)/源代码/MySorts/bin
java实验二(陈新杰20072102321)/源代码/MySorts/src
java实验二(陈新杰20072102321)/源代码/MySorts
java实验二(陈新杰20072102321)/可运行软件
java实验二(陈新杰20072102321)/实验报告
java实验二(陈新杰20072102321)/测试数据
java实验二(陈新杰20072102321)/源代码
java实验二(陈新杰20072102321)
本网站为编程资源及源代码搜集、介绍的搜索网站,版权归原作者所有! 粤ICP备11031372号
1999-2046 搜珍网 All Rights Reserved.