js-apis-treemap.md 11.5 KB
Newer Older
L
linhaoran 已提交
1 2 3 4 5
# 非线性容器TreeMap  

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

6 7 8 9 10 11 12
TreeMap可用于存储具有关联关系的key-value键值对集合,存储元素中key值唯一,每个key对应一个value。

TreeMap底层使用红黑树实现,可以利用二叉树特性快速查找键值对。key值有序存储,可以实现快速的插入和删除。

TreeMap和[HashMap](js-apis-treemap.md)相比,HashMap依据键的hashCode存取数据,访问速度较快。而TreeMap是有序存取,效率较低。

**推荐使用场景:** 一般需要存储有序键值对的场景,可以使用TreeMap。
L
linhaoran 已提交
13

L
lengchangjing 已提交
14 15 16 17
文档中存在泛型的使用,涉及以下泛型标记符:<br>
- K: Key, 键<br>
- V: Value, 值

L
linhaoran 已提交
18 19
## 导入模块

20
```ts
21
import TreeMap from '@ohos.util.TreeMap';  
L
linhaoran 已提交
22 23 24 25 26 27
```

## TreeMap

### 属性

Z
zengyawen 已提交
28 29
**系统能力:** SystemCapability.Utils.Lang

L
linhaoran 已提交
30 31
| 名称 | 参数类型 | 可读 | 可写 | 说明 |
| -------- | -------- | -------- | -------- | -------- |
32
| length | number | 是 | 否 | TreeMap的元素个数。 |
L
linhaoran 已提交
33 34 35 36


### constructor

Z
zengyawen 已提交
37
constructor(comparator?:(firstValue: K, secondValue: K) => boolean)
L
linhaoran 已提交
38 39 40

TreeMap的构造函数。

Z
zengyawen 已提交
41 42
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
43 44 45 46 47 48 49
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| comparator | function | 否 | 用户自定义的比较函数。 |

**示例:**
L
linhaoran 已提交
50

51
```ts
Z
zengyawen 已提交
52 53
let treeMap = new TreeMap();
```
L
linhaoran 已提交
54 55 56 57


### isEmpty

58
isEmpty(): boolean
L
linhaoran 已提交
59 60 61

判断该容器是否为空。

Z
zengyawen 已提交
62 63
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
64 65 66 67 68
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| boolean | 为空返回true,否则返回false。 |
L
linhaoran 已提交
69

Z
zengyawen 已提交
70 71
**示例:**

72
```ts
Z
zengyawen 已提交
73
const treeMap = new TreeMap();
74
let result = treeMap.isEmpty();
Z
zengyawen 已提交
75
```
L
linhaoran 已提交
76 77 78 79


### hasKey

80
hasKey(key: K): boolean
L
linhaoran 已提交
81 82 83

判断此容器中是否含有该指定key。

Z
zengyawen 已提交
84 85
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
86
**参数:**
L
linhaoran 已提交
87

Z
zengyawen 已提交
88 89
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
90
| key | K | 是 | 指定key |
L
linhaoran 已提交
91

Z
zengyawen 已提交
92 93 94 95
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
96
| boolean | 包含指定key返回true,否则返回false。 |
Z
zengyawen 已提交
97 98 99

**示例:**

100
```ts
Z
zengyawen 已提交
101
let treeMap = new TreeMap();
L
lengchangjing 已提交
102 103 104
let result = treeMap.hasKey("squirrel");
treeMap.set("squirrel", 123);
let result1 = treeMap.hasKey("squirrel");
Z
zengyawen 已提交
105
```
L
linhaoran 已提交
106 107 108 109


### hasValue

Z
zengyawen 已提交
110
hasValue(value: V): boolean
L
linhaoran 已提交
111

W
wusongqing 已提交
112
判断此容器中是否含有该指定value。
L
linhaoran 已提交
113

Z
zengyawen 已提交
114 115
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
116 117 118 119
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
W
wusongqing 已提交
120
| value | V | 是 | 指定value。 |
L
linhaoran 已提交
121

Z
zengyawen 已提交
122
**返回值:**
L
linhaoran 已提交
123

Z
zengyawen 已提交
124 125 126 127 128 129
| 类型 | 说明 |
| -------- | -------- |
| boolean | 包含指定元素返回true,否则返回false。 |

**示例:**

130
```ts
Z
zengyawen 已提交
131
let treeMap = new TreeMap();
132
let result = treeMap.hasValue(123);
L
lengchangjing 已提交
133
treeMap.set("squirrel", 123);
134
let result1 = treeMap.hasValue(123);
Z
zengyawen 已提交
135
```
L
linhaoran 已提交
136 137 138 139


### get

Z
zengyawen 已提交
140
get(key: K): V
L
linhaoran 已提交
141 142 143

获取指定key所对应的value。

Z
zengyawen 已提交
144 145
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
146 147 148 149
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
150
| key | K | 是 | 指定key。 |
Z
zengyawen 已提交
151 152

**返回值:**
L
linhaoran 已提交
153

Z
zengyawen 已提交
154 155 156
| 类型 | 说明 |
| -------- | -------- |
| V | 返回key映射的value值。 |
L
linhaoran 已提交
157

Z
zengyawen 已提交
158 159
**示例:**

160
```ts
Z
zengyawen 已提交
161
let treeMap = new TreeMap();
L
lengchangjing 已提交
162 163 164
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
let result = treeMap.get("sparrow");
Z
zengyawen 已提交
165
```
L
linhaoran 已提交
166 167 168 169


### getFirstKey

170
getFirstKey(): K
L
linhaoran 已提交
171

172
获取容器中排序第一的key。
L
linhaoran 已提交
173

Z
zengyawen 已提交
174 175
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
176 177 178 179
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
180
| K | 返回排序第一的key。 |
Z
zengyawen 已提交
181 182

**示例:**
L
linhaoran 已提交
183

184
```ts
Z
zengyawen 已提交
185
let treeMap = new TreeMap();
L
lengchangjing 已提交
186 187
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
188 189
let result = treeMap.getFirstKey();
```
L
linhaoran 已提交
190 191 192 193


### getLastKey

194
getLastKey(): K
L
linhaoran 已提交
195

196
获取容器中排序最后的key。
L
linhaoran 已提交
197

Z
zengyawen 已提交
198 199
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
200
**返回值:**
L
linhaoran 已提交
201

Z
zengyawen 已提交
202 203
| 类型 | 说明 |
| -------- | -------- |
204
| K | 返回排序最后的key |
Z
zengyawen 已提交
205 206 207

**示例:**

208
```ts
Z
zengyawen 已提交
209
let treeMap = new TreeMap();
L
lengchangjing 已提交
210 211
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
212 213
let result = treeMap.getLastKey();
```
L
linhaoran 已提交
214 215 216 217


### setAll

Z
zengyawen 已提交
218
setAll(map: TreeMap<K, V>): void
L
linhaoran 已提交
219

220
将一个TreeMap中的所有元素组添加到另一个TreeMap中。
L
linhaoran 已提交
221

Z
zengyawen 已提交
222 223
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
224 225 226 227
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
228
| map | TreeMap<K, V> | 是 | 被添加元素的treeMap。 |
Z
zengyawen 已提交
229 230

**示例:**
L
linhaoran 已提交
231

232
```ts
Z
zengyawen 已提交
233
let treeMap = new TreeMap();
L
lengchangjing 已提交
234 235
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
236 237 238
let map = new TreeMap();
treeMap.setAll(map);
```
L
linhaoran 已提交
239 240 241


### set
242

Z
zengyawen 已提交
243
set(key: K, value: V): Object
L
linhaoran 已提交
244

245
向容器中添加一组数据。
L
linhaoran 已提交
246

Z
zengyawen 已提交
247 248
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
249 250 251 252 253 254
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 添加成员数据的键名。 |
| value | V | 是 | 添加成员数据的值。 |
L
linhaoran 已提交
255

Z
zengyawen 已提交
256
**返回值:**
L
linhaoran 已提交
257

Z
zengyawen 已提交
258 259
| 类型 | 说明 |
| -------- | -------- |
260
| Object | 返回添加后的treeMap |
Z
zengyawen 已提交
261 262 263

**示例:**

264
```ts
Z
zengyawen 已提交
265
let treeMap = new TreeMap();
L
lengchangjing 已提交
266
treeMap.set("squirrel", 123);
Z
zengyawen 已提交
267
```
L
linhaoran 已提交
268 269 270 271


### remove

272
remove(key: K): V
L
linhaoran 已提交
273

274
删除指定key对应的元素。
L
linhaoran 已提交
275

Z
zengyawen 已提交
276 277
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
278 279 280 281
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
282
| key | K | 是 | 指定key。 |
Z
zengyawen 已提交
283 284

**返回值:**
L
linhaoran 已提交
285

Z
zengyawen 已提交
286 287 288
| 类型 | 说明 |
| -------- | -------- |
| V | 返回删除元素的值。 |
L
linhaoran 已提交
289

Z
zengyawen 已提交
290 291
**示例:**

292
```ts
Z
zengyawen 已提交
293
let treeMap = new TreeMap();
L
lengchangjing 已提交
294 295 296
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
treeMap.remove("sparrow");
Z
zengyawen 已提交
297
```
L
linhaoran 已提交
298 299


300
### getLowerKey
L
linhaoran 已提交
301

302
getLowerKey(key: K): K
L
linhaoran 已提交
303 304 305

获取容器中比传入key排序靠前一位的key。

Z
zengyawen 已提交
306 307
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
308 309 310 311 312 313 314
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 对比的key值。 |

**返回值:**
L
linhaoran 已提交
315

Z
zengyawen 已提交
316 317 318
| 类型 | 说明 |
| -------- | -------- |
| K | 返回排序中key前一位的数据。 |
L
linhaoran 已提交
319

Z
zengyawen 已提交
320 321
**示例:**

322
```ts
Z
zengyawen 已提交
323
let treeMap = new TreeMap();
L
lengchangjing 已提交
324 325 326 327
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
treeMap.set("gander", 356);
let result = treeMap.getLowerKey("sparrow");
Z
zengyawen 已提交
328
```
L
linhaoran 已提交
329 330


331
### getHigherKey
L
linhaoran 已提交
332

333
getHigherKey(key: K): K
L
linhaoran 已提交
334 335 336

获取容器中比传入key排序靠后一位的key。

Z
zengyawen 已提交
337 338
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
339
**参数:**
L
linhaoran 已提交
340

Z
zengyawen 已提交
341 342 343
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| key | K | 是 | 对比的key值。 |
L
linhaoran 已提交
344

Z
zengyawen 已提交
345 346 347 348 349 350 351 352
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| K | 返回排序中key后一位的数据。 |

**示例:**

353
```ts
Z
zengyawen 已提交
354
let treeMap = new TreeMap();
L
lengchangjing 已提交
355 356 357 358
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
treeMap.set("gander", 356);
let result = treeMap.getHigherKey("sparrow");
Z
zengyawen 已提交
359
```
L
linhaoran 已提交
360 361

### replace
362

363
replace(key: K, newValue: V): boolean
L
linhaoran 已提交
364

365
对容器中一组数据进行更新(替换)。
L
linhaoran 已提交
366

Z
zengyawen 已提交
367 368
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
369
**参数:**
L
linhaoran 已提交
370

Z
zengyawen 已提交
371 372
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
373 374
| key | K | 是 | 指定key。 |
| newValue | V | 是 | 替换的元素。 |
L
linhaoran 已提交
375

Z
zengyawen 已提交
376 377 378 379
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
380
| boolean | 对指定key对应的元素替换成功返回true,否则返回false。 |
Z
zengyawen 已提交
381 382 383

**示例:**

384
```ts
Z
zengyawen 已提交
385
let treeMap = new TreeMap();
L
lengchangjing 已提交
386 387
treeMap.set("sparrow", 123);
let result = treeMap.replace("sparrow", 357);
Z
zengyawen 已提交
388
```
L
linhaoran 已提交
389 390 391 392


### clear

Z
zengyawen 已提交
393
clear(): void
L
linhaoran 已提交
394

395
清除容器中的所有元素,并把length置为0。
L
linhaoran 已提交
396

Z
zengyawen 已提交
397 398
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
399 400
**示例:**

401
```ts
Z
zengyawen 已提交
402
let treeMap = new TreeMap();
L
lengchangjing 已提交
403 404
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
405 406
treeMap.clear();
```
L
linhaoran 已提交
407 408 409 410


### keys

Z
zengyawen 已提交
411
keys(): IterableIterator&lt;K&gt;
L
linhaoran 已提交
412 413 414

返回包含此映射中包含的键的新迭代器对象。

Z
zengyawen 已提交
415 416
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
417 418 419 420 421 422 423 424
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| IterableIterator&lt;K&gt; | 返回一个迭代器。 |

**示例:**

425
```ts
Z
zengyawen 已提交
426
let treeMap = new TreeMap();
L
lengchangjing 已提交
427 428
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
429 430 431
let iter = treeMap.keys();
let temp = iter.next().value;
while(temp != undefined) {
432
  console.log("value:" + temp);
Z
zengyawen 已提交
433 434 435
  temp = iter.next().value;
} 
```
L
linhaoran 已提交
436 437 438 439


### values

Z
zengyawen 已提交
440
values(): IterableIterator&lt;V&gt;
L
linhaoran 已提交
441

W
wusongqing 已提交
442
返回包含此映射中包含的键值的新迭代器对象。
L
linhaoran 已提交
443

Z
zengyawen 已提交
444 445
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
446 447 448 449 450 451 452 453
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| IterableIterator&lt;V&gt; | 返回一个迭代器。 |

**示例:**

454
```ts
Z
zengyawen 已提交
455
let treeMap = new TreeMap();
L
lengchangjing 已提交
456 457
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
458 459 460
let iter = treeMap.values();
let temp = iter.next().value;
while(temp != undefined) {
461
  console.log("value:" + temp);
Z
zengyawen 已提交
462 463 464
  temp = iter.next().value;
}
```
L
linhaoran 已提交
465 466 467 468


### forEach

469
forEach(callbackfn: (value?: V, key?: K, map?: TreeMap<K, V>) => void, thisArg?: Object): void
L
linhaoran 已提交
470 471 472

通过回调函数来遍历实例对象上的元素以及元素对应的下标。

Z
zengyawen 已提交
473 474
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
475 476 477 478 479 480 481 482 483 484
**参数:**

| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
| callbackfn | function | 是 | 回调函数。 |
| thisArg | Object | 否 | callbackfn被调用时用作this值。 |

callbackfn的参数说明:
| 参数名 | 类型 | 必填 | 说明 |
| -------- | -------- | -------- | -------- |
485 486
| value | V | 否 | 当前遍历到的元素键值对的值。 |
| key | K | 否 | 当前遍历到的元素键值对的键。 |
487
| map | TreeMap<K, V> | 否 | 当前调用forEach方法的实例对象。 |
Z
zengyawen 已提交
488 489 490

**示例:**

491
```ts
Z
zengyawen 已提交
492
let treeMap = new TreeMap();
L
lengchangjing 已提交
493 494
treeMap.set("sparrow", 123);
treeMap.set("gull", 357);
Z
zengyawen 已提交
495
treeMap.forEach((value, key) => {
496
  console.log("value:" + value, key);
Z
zengyawen 已提交
497 498
});
```
L
linhaoran 已提交
499 500 501 502


### entries

Z
zengyawen 已提交
503
entries(): IterableIterator<[K, V]>
L
linhaoran 已提交
504

505
返回包含此映射中包含的键值对的新迭代器对象。
L
linhaoran 已提交
506

Z
zengyawen 已提交
507 508
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
509 510 511 512 513 514 515 516
**返回值:**

| 类型 | 说明 |
| -------- | -------- |
| IterableIterator<[K, V]> | 返回一个迭代器。 |

**示例:**

517
```ts
Z
zengyawen 已提交
518
let treeMap = new TreeMap();
L
lengchangjing 已提交
519 520
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
521 522 523
let iter = treeMap.entries();
let temp = iter.next().value;
while(temp != undefined) {
524 525
  console.log("key:" + temp[0]);
  console.log("value:" + temp[1]);
Z
zengyawen 已提交
526 527 528
  temp = iter.next().value;
}
```
L
linhaoran 已提交
529 530 531 532


### [Symbol.iterator]

533
[Symbol.iterator]\(): IterableIterator&lt;[K, V]&gt;
L
linhaoran 已提交
534

Z
zengyawen 已提交
535 536
返回一个迭代器,迭代器的每一项都是一个 JavaScript 对象,并返回该对象。

Z
zengyawen 已提交
537 538
**系统能力:** SystemCapability.Utils.Lang

Z
zengyawen 已提交
539 540 541 542 543 544 545
**返回值:**
| 类型 | 说明 |
| -------- | -------- |
| IterableIterator<[K, V]> | 返回一个迭代器。 |

**示例:**

546
```ts
Z
zengyawen 已提交
547
let treeMap = new TreeMap();
L
lengchangjing 已提交
548 549
treeMap.set("squirrel", 123);
treeMap.set("sparrow", 356);
Z
zengyawen 已提交
550 551 552

// 使用方法一:
for (let item of treeMap) { 
553 554
  console.log("key:" + item[0]);
  console.log("value:" + item[1]);
Z
zengyawen 已提交
555 556 557 558 559 560
}

// 使用方法二:
let iter = treeMap[Symbol.iterator]();
let temp = iter.next().value;
while(temp != undefined) {
561 562
  console.log("key:" + temp[0]);
  console.log("value:" + temp[1]);
Z
zengyawen 已提交
563 564 565
  temp = iter.next().value;
}
```