当前位置: 首页 > news >正文

龙华网站的建设百度seo技术优化

龙华网站的建设,百度seo技术优化,局域网怎么建立,wordpress调用oss文章目录 场景TreeMap.tailMap方法简单分析使用随机值使用treemap实现权重取值将Int改为Double稍微准确一点,因为double随机的值更加多测试main方法 当权重的参数比较多,那么建议使用hutool封装的 场景 按照权重2,8给用户分组为A,B, TreeMap.tailMap方法 treeMap是一种基于红… 文章目录 场景TreeMap.tailMap方法简单分析使用随机值使用treemap实现权重取值将Int改为Double稍微准确一点,因为double随机的值更加多测试main方法 当权重的参数比较多,那么建议使用hutool封装的 场景 按照权重2,8给用户分组为A,B, TreeMap.tailMap方法 treeMap是一种基于红黑树实现的有序映射表提供了一系列的方法来操作映射表中的元素。其中tailMap方法是用于返回映射表中大于或等于给定键的部分视图。 tailMap方法的定义如下 public NavigableMapK,V tailMap(K fromKey, boolean inclusive) {return new AscendingSubMap(this,false, fromKey, inclusive,true, null, true);}其中fromKey表示起始键返回一个从fromKey开始到映射表末尾的部分视图。inclusive是表示是否包含传入的fronKey.这个部分视图是SortedMap类型的可以进行排序操作。 使用tailMap方法需要注意以下几点 如果fromKey不存在于映射表中则返回的部分视图将包含大于fromKey的所有键值对。返回的部分视图是映射表的一个视图对这个视图所做的修改会影响到原映射表。返回的部分视图是有序的可以进行排序操作。 下面是一个示例代码 import java.util.TreeMap; import java.util.SortedMap;public class TreeMapExample {public static void main(String[] args) {TreeMapInteger, String treeMap new TreeMap();treeMap.put(1, one);treeMap.put(2, two);treeMap.put(3, three);treeMap.put(4, four);treeMap.put(5, five);// 返回大于等于3的部分视图SortedMapInteger, String tailMap treeMap.tailMap(3);System.out.println(tailMap); // 输出 {3three, 4four, 5five}// 修改部分视图tailMap.put(6, six);System.out.println(treeMap); // 输出 {1one, 2two, 3three, 4four, 5five, 6six}// 对部分视图进行排序SortedMapInteger, String sortedTailMap tailMap.descendingMap();System.out.println(sortedTailMap); // 输出 {6six, 5five, 4four, 3three}} }在上面的示例代码中首先创建了一个treeMap对象并向其中添加了5个键值对。然后使用tailMap方法返回了大于等于3的部分视图并对这个部分视图进行了修改和排序操作。 tailMap方法是Java中treeMap类提供的一个非常有用的方法可以方便地获取映射表中大于等于指定键的部分视图并进行排序和修改操作。 针对这个特性可以用来获取权重值 简单分析 好比A:B的权重为2:8,那么相当于A的权重为0-2,B的权重为2-10(28)都是包左不包右的; 那我们就可以随机个0-10的值,如果在0-2那么返回A,如果2-10那就返回B 使用随机值 public static String test1() {Random random new Random();int i random.nextInt(10);if (i 2) {return A;} else if (i 2 i 10) {return B;} else {return C;}}使用treemap实现权重取值 public static String test2() {TreeMapInteger, String treeMap new TreeMap();int total 2 8;treeMap.put(2, A);treeMap.put(total, B);Random random new Random();return treeMap.tailMap(random.nextInt(total), false).firstEntry().getValue();}将Int改为Double稍微准确一点,因为double随机的值更加多 public static String test3() {TreeMapDouble, String treeMap new TreeMap();int total 2 8;treeMap.put((double) 2, A);treeMap.put((double) total, B);Random random new Random();return treeMap.tailMap(total * random.nextDouble(), false).firstEntry().getValue();} 测试main方法 package com.study.springbootplus.test;import cn.hutool.core.lang.WeightRandom; import cn.hutool.core.util.NumberUtil; import cn.hutool.core.util.RandomUtil;import java.util.ArrayList; import java.util.List; import java.util.Random; import java.util.TreeMap;/*** ClassName RandomTest* Author yida* Date 2023-09-14 18:26* Description RandomTest*/ public class RandomTest {public static void main(String[] args) {int num_a 0, num_b 0, num_c 0;int testCount 1000;for (int i 0; i testCount; i) {switch (test3()) {case A:num_a num_a 1;break;case B:num_b num_b 1;break;case C:num_c num_c 1;break;}}System.out.println(A- num_a ------- NumberUtil.div(num_a, testCount, 2) * 100 %);System.out.println(B- num_b ------- NumberUtil.div(num_b, testCount, 2) * 100 %);System.out.println(C- num_c ------- NumberUtil.div(num_c, testCount, 2) * 100 %);}public static String test1() {Random random new Random();int i random.nextInt(10);if (i 2) {return A;} else if (i 2 i 10) {return B;} else {return C;}}public static String test2() {TreeMapInteger, String treeMap new TreeMap();int total 2 8;treeMap.put(2, A);treeMap.put(total, B);Random random new Random();return treeMap.tailMap(random.nextInt(total), false).firstEntry().getValue();}public static String test3() {TreeMapDouble, String treeMap new TreeMap();int total 2 8;treeMap.put((double) 2, A);treeMap.put((double) total, B);Random random new Random();return treeMap.tailMap(total * random.nextDouble(), false).firstEntry().getValue();}public static void test() {ListWeightRandom.WeightObjString weightList new ArrayList();weightList.add(new WeightRandom.WeightObj(A, 20));weightList.add(new WeightRandom.WeightObj(B, 30));weightList.add(new WeightRandom.WeightObj(C, 40));weightList.add(new WeightRandom.WeightObj(D, 10));WeightRandomString wr RandomUtil.weightRandom(weightList);String str ;int num_a 0, num_b 0, num_c 0, num_d 0;int testCount 10000;for (int i 0; i testCount; i) {str wr.next();switch (str) {case A:num_a num_a 1;break;case B:num_b num_b 1;break;case C:num_c num_c 1;break;case D:num_d num_d 1;break;}}System.out.println(A- num_a ------- NumberUtil.div(num_a, testCount, 2) * 100 %);System.out.println(B- num_b ------- NumberUtil.div(num_b, testCount, 2) * 100 %);System.out.println(C- num_c ------- NumberUtil.div(num_c, testCount, 2) * 100 %);System.out.println(D- num_d ------- NumberUtil.div(num_d, testCount, 2) * 100 %);}} 测试结果: A-195-------20.0% B-805-------81.0% C-0-------0.0% 如果测试基数越大,则越准确 当权重的参数比较多,那么建议使用hutool封装的 使用hutool返回权重值 原创
http://www.yutouwan.com/news/37206/

相关文章:

  • 怎么建设游网站主页咸宁市做网站
  • 做电子商务网站需要什么手续科技设计公司网站模板
  • 如何做网站定位广州网站开发 找亦客公司优质
  • 怎么建设国际网站网站全站搜索代码
  • 白酒网站源码网站开发实训报告总结2021
  • 免费建立企业网站网站绑定微信公众号
  • 汉口网站建设制作网站设计工
  • 企业网站后台管理软件网站建设提案怎么写
  • 临沂市建设工程多图联审系统 网站怎么用ps做网站超链接
  • 网站开发研究背景网页设计作业文件
  • 网站建设完成确认书展会搭建设计案例网站
  • 网站建设知识论文代理游戏网站
  • 网站搭建网平面设计学徒工资一般多少
  • 古腾堡布局的网站相关网站怎么做
  • 工会 网站 建设合肥做推拉棚网站推广
  • 域名出售网站阿里云域名注册流程
  • 昌邑网站建设seo自学网视频教程
  • 创建网站开发公司服务器做网站数据库
  • 网站建设与管理ppt模板下载wordpress免费建站
  • 合肥科技职业学院网站建设与管理做app模板网站有哪些内容
  • seo查询是什么商城网站不易优化
  • 网站开发的背景知识与相关技术做p2p投资理财的网站
  • 网站的锚点链接怎么做代运营公司
  • wap网站如何建设网站建设的核心是什么
  • 长春住房和城乡建设部官方网站关于动漫的网站建设
  • 无锡时光科技网站建设公司怎么样江苏林润建设工程有限公司网站
  • 一站式网页设计服务平台网页设计公司的目标客户有哪些
  • wordpress站内查找搜狗搜索排名优化
  • 深圳高端做网站公司网站商城方案
  • 怎么快速做网站文章网站建设与管理维护参考文献