找出多组分辨率中最接近目标值的一组

java 复制代码
package com.test;

import java.util.ArrayList;
import java.util.List;

public class Test {
	
	public static void main(String[] args) {
		
		// 目标分辨率
		int targetWidth = 640;
		int targetHeight = 480;
		
		//String str = "3264x2448,3264x1836,2560x1920,3264x1472,3200x1440,2304x1728,2560x1440,1920x1920,2048x1536,2304x1296,1920x1440,2400x1080,1920x1080";
		String str = "2560x1920,3264x1472,3200x1440,2304x1728,2560x1440,1920x1920,2048x1536,2304x1296,1920x1440,2400x1080,2304x1040,1920x1080,1632x1224,1600x1200,1440x1080,1280x960,1088x1088,1600x720,1280x720,960x540,800x600,800x480,720x480,352x288,320x240,176x144";
		
		String[] ary1 = str.split(",");
		List<String> list = new ArrayList<String>();
		
		for (int i = 0; i < ary1.length; i++) {
			String sss = ary1[i];
			list.add(sss);
		}
		
		//获取和目标值最接近的一组分辨率
		String s = getBestResolution(list,targetWidth,targetHeight);
		
		// 输出最接近目标分辨率的数据
		System.out.println("最接近目标分辨率的数据为:"+s);
		
	}

	/**
	 * 	获取和目标值最接近的一组分辨率
	 * @param list 分辨率集合,例如:[960x540,800x600,800x480,720x480,352x288,320x240,176x144]
	 * @param targetWidth 目标分辨率宽,例如:640
	 * @param targetHeight 目标分辨率高,例如:480
	 * @return 和目标值最接近的一组分辨率,例如:720x480
	 */
	public static String getBestResolution(List<String>list,int targetWidth,int targetHeight) {
		// 数据集合
		List<Resolution> resolutions = new ArrayList<Resolution>();
		
		for (int i = 0; i < list.size(); i++) {
			String sss = list.get(i);
			String[] ary2 = sss.split("x");
			Resolution resolution = new Resolution(Integer.parseInt(ary2[0]), Integer.parseInt(ary2[1]));
			resolutions.add(resolution);
		}
		
		// 初始化最小差距为最大值
		int minDifference = Integer.MAX_VALUE;
		Resolution closestResolution = null;

		// 遍历数据集合,找到最接近目标分辨率的数据
		for (Resolution resolution : resolutions) {
			int difference = Math.abs(resolution.width - targetWidth) + Math.abs(resolution.height - targetHeight);
			if (difference < minDifference) {
				minDifference = difference;
				closestResolution = resolution;
			}
		}
		String res = String.format("%dx%d",closestResolution.width,closestResolution.height);
		return res;
	}

	// 分辨率类
	static class Resolution {
		int width;
		int height;

		public Resolution(int width, int height) {
			this.width = width;
			this.height = height;
		}
	}
}

输出结果

java 复制代码
最接近目标分辨率的数据为:720x480
相关推荐
战族狼魂3 小时前
CSGO 皮肤交易平台后端 (Spring Boot) 代码结构与示例
java·spring boot·后端
xyliiiiiL4 小时前
ZGC初步了解
java·jvm·算法
杉之5 小时前
常见前端GET请求以及对应的Spring后端接收接口写法
java·前端·后端·spring·vue
hycccccch5 小时前
Canal+RabbitMQ实现MySQL数据增量同步
java·数据库·后端·rabbitmq
每次的天空6 小时前
Android学习总结之算法篇四(字符串)
android·学习·算法
天天向上杰6 小时前
面基JavaEE银行金融业务逻辑层处理金融数据类型BigDecimal
java·bigdecimal
请来次降维打击!!!6 小时前
优选算法系列(5.位运算)
java·前端·c++·算法
用键盘当武器的秋刀鱼6 小时前
springBoot统一响应类型3.5.1版本
java·spring boot·后端
嘤国大力士7 小时前
C++11&QT复习 (七)
java·c++·qt
松树戈7 小时前
Java常用异步方式总结
java·开发语言