- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SortedMap.subMap
这是 SortedMap<K,V>.subMap
的 API :
SortedMap<K,V> subMap(K fromKey, K toKey)
: Returns a view of the portion of this map whose keys range fromfromKey
, inclusive, totoKey
, exclusive.
这种包含下限和排他上限的组合(“半开范围”)在 Java 中很普遍,虽然它确实有它的好处,但它也有它的怪癖,我们很快就会看到。
以下片段说明了 subMap
的简单用法:
static <K,V> SortedMap<K,V> someSortOfSortedMap() {
return Collections.synchronizedSortedMap(new TreeMap<K,V>());
}
//...
SortedMap<Integer,String> map = someSortOfSortedMap();
map.put(1, "One");
map.put(3, "Three");
map.put(5, "Five");
map.put(7, "Seven");
map.put(9, "Nine");
System.out.println(map.subMap(0, 4));
// prints "{1=One, 3=Three}"
System.out.println(map.subMap(3, 7));
// prints "{3=Three, 5=Five}"
最后一行很重要:7=Seven
被排除在外,因为 subMap
的独占上限性质.现在假设我们确实需要一个包含上限,那么我们可以尝试编写这样的实用方法:
static <V> SortedMap<Integer,V>
subMapInclusive(SortedMap<Integer,V> map, int from, int to) {
return (to == Integer.MAX_VALUE)
? map.tailMap(from)
: map.subMap(from, to + 1);
}
然后,继续上面的代码片段,我们得到:
System.out.println(subMapInclusive(map, 3, 7));
// prints "{3=Three, 5=Five, 7=Seven}"
map.put(Integer.MAX_VALUE, "Infinity");
System.out.println(subMapInclusive(map, 5, Integer.MAX_VALUE));
// {5=Five, 7=Seven, 9=Nine, 2147483647=Infinity}
需要进行一些关键观察:
subMapInclusive
假定 Integer
to + 1
的键上类。
Long
key 是不可能的(见相关问题)Long
了,我们需要与 Long.MAX_VALUE
进行比较相反Byte
, Character
, etc 作为键,必须全部单独写toInclusive == Integer.MAX_VALUE
进行特殊检查,因为 +1
会溢出,并且subMap
会抛出 IllegalArgumentException: fromKey > toKey
String
呢? key ?或者一些甚至可能不是 Comparable<?>
的未知类型?所以问题是:是否可以写一个通用的subMapInclusive
采用 SortedMap<K,V>
的方法, 和 K fromKey, K toKey
,并执行包含范围 subMap
有疑问吗?
NavigableMap
应该提到的是有一个 NavigableMap.subMap
需要两个额外的重载 boolean
变量来表示边界是包含的还是排他的。如果这在 SortedMap
中可用,那么以上都不会被问到。
所以使用 NavigableMap<K,V>
对于包含范围的查询是理想的,但是 Collections
为 SortedMap
提供实用方法(除其他外),我们没有得到与 NavigableMap
相同的奢侈。 .
最佳答案
这是我对通用包含子图的实现。在这里,我假设由于映射是排序的,tailmap 的时间复杂度会很低,所以诀窍是从尾部开始并查看返回的键,然后基于这些键要么采用尾部,即常规子图,或带有下一个键的子图:
static <K, V> SortedMap<K,V>
subMapInclusive(SortedMap<K,V> map, K from, K to) {
if(to == null) return map.tailMap(from);
//What appears at key "to" or later?
Iterator<K> keys = map.tailMap(to).keySet().iterator();
//Nothing, just take tail map.
if(!keys.hasNext()) return map.tailMap(from);
K key = keys.next();
//The first item found isn't to so regular submap will work
if(!to.equals(key)) return map.subMap(from, to);
//to is in the map
//it is not the last key
if(keys.hasNext()) return map.subMap(from, keys.next());
//it is the last key
return map.tailMap(from);
}
关于java - 仅支持半开范围时如何进行包含范围查询(ala SortedMap.subMap),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2857680/
如何使用 ToggleButton 启用/禁用推送通知 示例: ToggleButton 禁用 (OFF) >>> 推送通知应该停止 ToggleButton 启用 (ON) >>> 推送通知 Sho
我有一个 div,它通过简单的转换将自身转换为: div{ transform: translate3d(0, -100%, 0); transition: all .5s; } div.ac
我尝试为静音/取消静音按钮创建一个开/关按钮: override func touchesEnded(touches: NSSet, withEvent event: UIEvent) {
我正在手动设置 Jest 。 我的 repo 结构: my-proj - src - components ... - accordion - index.jsx - t
我有一个这样的测试失败了,因为没有调用模拟,问题是模拟被调用但在测试完成之前。 test('should submit if proper values', () => { const spy =
目前我正在使用标准的 testRegex 逻辑来运行我的测试 "jest": { "moduleFileExtensions": [ "ts", "js"
目前我有这个测试: import toHoursMinutes from '../../../app/utils/toHoursMinutes'; describe('app.utils.toHour
使用Chai,您可以创建一个 spy 对象,如下所示: chai.spy.object([ 'push', 'pop' ]); 使用 Jasmine ,您可以使用: jasmine.createSpy
我正在编写一个 Jest 测试,其中我调用一个函数并期望返回一个对象,如下所示: const repository = container => { const makeBooking = (us
当我单独运行每个测试时,它们都成功了。但是当我通过 npm test 一起运行它们时第二个测试失败: Expected number of calls: 2 Received number of ca
我们最近将两个不同的 repos 迁移到一个 monorepo 中。每个都使用 jest 和自己的自定义配置,在他们自己的 package.json 文件中定义。 我想使用 --projects标志以
我试图模拟属性(property) tz和一个使用 jest 的函数,但我不知道将这两个东西一起模拟: 如果运行类似: jest.mock('moment-timezone', () => () =>
我正在尝试设置 Jest 来测试我的应用程序的发展。我收到以下错误: SyntaxError: Unexpected identifier > 1 | const screenSize = requi
我将 Jest 与 React-Native 结合使用,并且偶然发现了一个问题。 App.js 组件中的一小段代码导致 50:50 分支覆盖率: const storeMiddleware = __D
我在下面创建了一个 Jest 测试文件。但是没有创建该文件的快照。我的代码有什么问题? import React from 'react'; import Carousel from './compo
我正在尝试弄清楚如何更新单个快照文件。在文档中,它说只需添加 -t 并且我假设文件名,但这对我不起作用。 例如,在我使用的终端中。 jest -u -t test/js/tests/component
我是 JEST 新手,目前正在测试一个 Javascript 组件,该组件在其 onComponentDidMount 中进行 API 调用。根据 ajax 调用(api 调用)的返回数据,我的组件显
我正在尝试开玩笑地为我的 Web 组件项目编写测试。我已经在 es2015 预设中使用了 babel。我在加载 js 文件时遇到问题。我遵循了一段代码,其中 document对象有一个 current
我刚刚开始使用 jest,但有些事情我不太清楚。 例如,为什么要测试此功能: const liElement = object => `${object.title}`; 与: expect(liEl
我正在编写需要定义 window.location.href 的单元测试第一个单元测试创建如下 describe('myMethod()', () => { beforeEach(()
我是一名优秀的程序员,十分优秀!