本篇內(nèi)容主要講解“如何實(shí)現(xiàn)Java List不重復(fù)抽取Util”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“如何實(shí)現(xiàn)Java List不重復(fù)抽取Util”吧!
創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)、淇濱網(wǎng)絡(luò)推廣、重慶小程序開發(fā)公司、淇濱網(wǎng)絡(luò)營銷、淇濱企業(yè)策劃、淇濱品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供淇濱建站搭建服務(wù),24小時(shí)服務(wù)熱線:028-86922220,官方網(wǎng)址:www.cdcxhl.com
import java.util.ArrayList;import java.util.List;import java.util.Random;/** * @Author: wuyiqi * @Date: 2021-03-16 10:17 * @Description: 萬能list抽取不重復(fù) */public class ExtractUtil { /** * 批量抽取 * @param size 抽取數(shù)量 * @param records 抽取的列表 * @param類型 * @return */ public static List extractList(int size, List records) { int total = records.size(); if (total < 1 || size < 1) { return null; } if (size >= total) { return records; } // 如果抽取的百分比大于50%,那就抽取不需要的,再反轉(zhuǎn) boolean reverse = false; if ((double) size / total > 0.5) { reverse = true; size = total - size; } // 抽取核心方法 List list = new ArrayList<>(); for (int i = 0; i < size; i++) { int random = new Random().nextInt(total); T t = extract(random, list, records); if (null != t) { list.add(t); } } // 如果反轉(zhuǎn) if (reverse) { List temp = new ArrayList<>(); for (T record : records) {if (!list.contains(record)) { temp.add(record); } } list = temp; } return list; } /** * 單個(gè)抽??;不重復(fù)抽取 * @param index 抽取位置 * @param newList 抽中的列表 * @param records 抽取的列表 * @param 類型 * @return */ public static T extract(int index, List newList, List records) { int total = records.size(); if (total < 1 || index >= total) { return null; } T t = records.get(index); if (newList.contains(t)) { t = extract(new Random().nextInt(total), newList, records); } return t; } }
到此,相信大家對(duì)“如何實(shí)現(xiàn)Java List不重復(fù)抽取Util”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!