Java-华为真题-预定酒店

需求:

复制代码
   放暑假了,小王决定到某旅游景点游玩,他在网上搜索到了各种价位的酒店(长度为n的数组A),他的心理价位是x元,请帮他筛选出k个最接近x元的酒店(n>=k>0),并由低到高打印酒店的价格。
复制代码
 1)酒店价格数组A和小王的心理价位x均为整型数据;(0 < n,k,x < 10000)
复制代码
 2)优先选择价格最接近心理价位的酒店;若两家酒店和心理价位差价相同,则选择价格较低的酒店。(比如100元和300元距离心理价位200元同样接近,此时选择100元);
复制代码
3)酒店价格可能相同重复。
复制代码
输入描述:
  第一行:n, k, x
  第二行:A[0] A[1] A[2]…A[n-1]

输出描述:
  由低到高打印筛选出的酒店价格

编码:

java 复制代码
public class ReservationHotel {
    public static void main(String[] args) {
        //使用useDelimiter()方法,输入一起输入
        Scanner sc = new Scanner(System.in).useDelimiter("\\D");
        System.out.print("请输入:");
        int count=sc.nextInt();
        int number=sc.nextInt();
        int money=sc.nextInt();
        //调用方法
        show(count,number,money,sc);
    }

    /**
     *
     * @param count 数组长度
     * @param number 筛选个数
     * @param money 目标价位
     */
    public static void show(int count,int number,int money, Scanner sc ){
       //(1)集合存放各个酒店价格数据
        List<Integer> hotelPriceList = new ArrayList<>();
        System.out.print("请输入"+count+"个酒店价格:");
        for (int i = 0; i <count ; i++) {
            hotelPriceList.add(sc.nextInt());
        }
       // (2)根据酒店价格从低到高排序
        Collections.sort(hotelPriceList,(o1, o2) -> {
            //心理价位差价
            int dif1=Math.abs(o1-money);
            int dif2=Math.abs(o2-money);
//            比较不等
            if (dif1!=dif2){
                return Integer.compare(dif1,dif2);
            }else{
                return  Integer.compare(o1,o2);
            }
        });

        System.out.println("进行比较后的酒店价格:"+hotelPriceList.toString());

        //(3)将集合存放各个筛选出number个最接近money元的酒店
        List<Integer> findPriceList = new ArrayList<>();
        for (int i = 0; i <number ; i++) {
            findPriceList.add(hotelPriceList.get(i)); //获取酒店筛选出数据
        }

        //(4)再按酒店价格从低到高排序
        Collections.sort(findPriceList);

        System.out.println("筛选出最接目标价位"+money+"元的酒店:"+findPriceList.toString());
    }
}

效果:

相关推荐
小小代码狗4 分钟前
PHP 常用函数与变量参考文档
开发语言·安全·php
一水21 分钟前
TTFT优化:一个方案的5次推倒重来
java·ai·状态模式
编程阿峰27 分钟前
Python 环境配置(二)安装jupyter、matplotlib、numpy库
开发语言·python·jupyter·numpy·matplotlib
AC赳赳老秦27 分钟前
CSDN 技术社区数据采集:OpenClaw 抓取公开技术热帖,生成领域技术热点周报
java·大数据·前端·数据库·python·php·openclaw
磁爆步兵1 小时前
内存分区:程序运行的核心秘密
java·开发语言·jvm
此生决int1 小时前
深入理解C++系列(06)——模版初阶与STL
开发语言·c++
流星白龙2 小时前
【Docker】4.NameSpace空间隔离实战
java·运维·docker
AI人工智能+电脑小能手2 小时前
【大白话说Java面试题 第207题】【09_Zookeeper篇】第8题:谈谈 ZooKeeper 的可靠性保障机制
java·zookeeper·高可用·可靠性·分布式系统
swany2 小时前
同步数据中,只需要几秒钟 & milvus向量数据库不可用 dify1.16.1 升级后踩坑记录
开发语言·python·numpy
harmful_sheep2 小时前
maven多版本包导致java.lang.NoClassDefFoundError
java·maven