Java 课程作业 20240520 实验四

忘记调整注释和删 TODO 了 :-D
This commit is contained in:
JRNitre 2024-05-20 23:41:23 +08:00
parent 480c62fd31
commit 0fc16ef8ca
2 changed files with 2 additions and 3 deletions

View File

@ -139,7 +139,6 @@ public class function_02 {
* Return: int[] 需要排序的数组 * Return: int[] 需要排序的数组
* */ * */
public void bubbleSort(int[] array){ public void bubbleSort(int[] array){
// TODO 优化冒泡排序算法
int n = array.length; int n = array.length;
// 冒泡排序 // 冒泡排序

View File

@ -40,7 +40,7 @@ public class test {
* 3. 读取该文件中的数据并升序排序 * 3. 读取该文件中的数据并升序排序
* *
* class: function_02.java * class: function_02.java
*/ *
// 实例化第二个实验内容的对象 // 实例化第二个实验内容的对象
function_02 f_2 = new function_02("file2.txt"); function_02 f_2 = new function_02("file2.txt");
@ -72,6 +72,6 @@ public class test {
// 调用冒泡排序算法进行排序 // 调用冒泡排序算法进行排序
f_2.bubbleSort(array_copy); f_2.bubbleSort(array_copy);
/**/ */
} }
} }