首页 > 编程语言 > 详细

二维数组排序程序添加功能

时间:2021-03-14 23:40:36      阅读:31      评论:0      收藏:0      [点我收藏+]

原程序为生成一定范围的随机数组并排序,在更新之前效果如下图:技术分享图片

 

 此时会在目录下输出四个结果文件:

技术分享图片

更新了文件读入功能:

首先,将数据放入文件中,数字间用空格隔开:

技术分享图片

 

然后使用程序进行读取:

技术分享图片

可以看到文件中的数字被成功排序:

技术分享图片

 

文件读取功能代码:

protected PointScanner(String inputFileName, Algorithm algo) throws FileNotFoundException, InputMismatchException
    {
        Scanner scnr = new Scanner(new File(inputFileName));
        ArrayList<Integer> apts = new ArrayList<Integer>();
        while(scnr.hasNextInt()) {
            apts.add(scnr.nextInt());
        }
        scnr.close();
        if (apts.size() % 2 != 0) throw new InputMismatchException();
        points = new Point[apts.size() / 2];
        int i;
        int x = 0;
        int y = 1;
        for(i = 0; i < points.length; i++) {
            points[i] = new Point(apts.get(x), apts.get(y));
            x = x + 2;
            y = x + 1;
        }
        sortingAlgorithm = algo;
    }

 

二维数组排序程序添加功能

原文:https://www.cnblogs.com/Priao/p/14533122.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!