# @ohos.util.TreeSet (Nonlinear Container TreeSet) **TreeSet** is implemented based on **[TreeMap](js-apis-treemap.md)**. In **TreeSet**, only **value** objects are processed. **TreeSet** can be used to store values, each of which must be unique. **[HashSet](js-apis-hashset.md)** stores data in a random order, whereas **TreeSet** stores data in sorted order. Both of them allow only unique elements. However, null values are allowed in **HashSet**, but not in **TreeSet**, because null values may affect the order of elements in the container. Recommended use case: Use **TreeSet** when you need to store data in sorted order. This topic uses the following to identify the use of generics: - T: Type > **NOTE** > > The initial APIs of this module are supported since API version 8. Newly added APIs will be marked with a superscript to indicate their earliest API version. ## Modules to Import ```ts import { TreeSet } from '@kit.ArkTS'; ``` ## TreeSet ### Attributes **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang | Name| Type| Readable| Writable| Description| | -------- | -------- | -------- | -------- | -------- | | length | number | Yes| No| Number of elements in a tree set (called container later).| ### constructor constructor(comparator?: (firstValue: T, secondValue: T) => boolean) A constructor used to create a **TreeSet** instance. It supports sorting elements in ascending or descending order by using comparators. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Parameters** | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | | comparator | function | No| Custom comparator, which can be used to sort elements based on the comparison relationship. The default value is **hole** (a blank placeholder), indicating that no comparator is provided.| **Error codes** For details about the error codes, see [Universal Error Codes](../errorcode-universal.md) and [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 401 | Parameter error. Possible causes: 1.Incorrect parameter types; 2.Parameter verification failed. | | 10200012 | The TreeSet's constructor cannot be directly invoked. | **Example** ```ts // Default constructor. let treeSet : TreeSet = new TreeSet(); ``` ```ts // Use the comparator firstValue < secondValue if the elements are expected to be sorted in ascending order. Use firstValue > secondValue if the elements are expected to be sorted in descending order. let treeSet : TreeSet = new TreeSet((firstValue: string, secondValue: string) : boolean => {return firstValue < secondValue}); treeSet.add("a"); treeSet.add("c"); treeSet.add("d"); treeSet.add("b"); let numbers = Array.from(treeSet.values()) for (let item of numbers) { console.log("TreeSet:" + item); } ``` ```ts // When a custom type is inserted, a comparator must be provided. class TestEntry{ public id: number = 0; } let ts1: TreeSet = new TreeSet((t1: TestEntry, t2: TestEntry): boolean => {return t1.id > t2.id;}); let entry1: TestEntry = { id: 0 }; let entry2: TestEntry = { id: 1 } ts1.add(entry1); ts1.add(entry2); console.log("treeSet: ", ts1.length); ``` ### isEmpty isEmpty(): boolean Checks whether this container is empty (contains no element). **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Return value** | Type| Description| | -------- | -------- | | boolean | Returns **true** if the container is empty; returns **false** otherwise.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The isEmpty method cannot be bound. | **Example** ```ts const treeSet : TreeSet = new TreeSet(); let result = treeSet.isEmpty(); ``` ### has has(value: T): boolean Checks whether this container has the specified value. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Parameters** | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | | value | T | Yes| Target value.| **Return value** | Type| Description| | -------- | -------- | | boolean | Returns **true** if the specified value is contained; returns **false** otherwise.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The has method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add(123); let result = treeSet.has(123); ``` ### getFirstValue getFirstValue(): T Obtains the value of the first element in this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Return value** | Type| Description| | -------- | -------- | | T | Value obtained. If nothing is obtained, **undefined** is returned.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The getFirstValue method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); let result = treeSet.getFirstValue(); ``` ### getLastValue getLastValue(): T Obtains the value of the last element in this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Return value** | Type| Description| | -------- | -------- | | T | Value obtained. If nothing is obtained, **undefined** is returned.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The getLastValue method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); let result = treeSet.getLastValue(); ``` ### add add(value: T): boolean Adds an element to this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Parameters** | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | | value | T | Yes| Target element.| **Return value** | Type| Description| | -------- | -------- | | boolean | Returns **true** if the element is added successfully; returns **false** otherwise.| **Error codes** For details about the error codes, see [Universal Error Codes](../errorcode-universal.md) and [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 401 | Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2. Incorrect parameter types; 3. Parameter verification failed. | | 10200011 | The add method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); let result = treeSet.add("squirrel"); ``` ### remove remove(value: T): boolean Removes the element with the specified key from this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Parameters** | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | | value | T | Yes| Key of the target element.| **Return value** | Type| Description| | -------- | -------- | | boolean | Returns **true** if the element is removed successfully; returns **false** otherwise.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The remove method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); let result = treeSet.remove("sparrow"); ``` ### getLowerValue getLowerValue(key: T): T Obtains the value that is placed in front of the input key in this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Parameters** | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | | key | T | Yes| Input key.| **Return value** | Type| Description| | -------- | -------- | | T | Value obtained. If nothing is obtained, **undefined** is returned.| **Error codes** For details about the error codes, see [Universal Error Codes](../errorcode-universal.md) and [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 401 | Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2. Incorrect parameter types; 3. Parameter verification failed. | | 10200011 | The getLowerValue method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); treeSet.add("gander"); let result = treeSet.getLowerValue("sparrow"); ``` ### getHigherValue getHigherValue(key: T): T Obtains the value that is placed next to the input key in this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Parameters** | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | | key | T | Yes| Input key.| **Return value** | Type| Description| | -------- | -------- | | T | Value obtained. If nothing is obtained, **undefined** is returned.| **Error codes** For details about the error codes, see [Universal Error Codes](../errorcode-universal.md) and [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 401 | Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2. Incorrect parameter types; 3. Parameter verification failed. | | 10200011 | The getHigherValue method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); treeSet.add("gander"); let result = treeSet.getHigherValue("sparrow"); ``` ### popFirst popFirst(): T Removes the first element in this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Return value** | Type| Description| | -------- | -------- | | T | Element removed. If nothing is obtained, **undefined** is returned.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The popFirst method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); let result = treeSet.popFirst(); ``` ### popLast popLast(): T Removes the last element in this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Return value** | Type| Description| | -------- | -------- | | T | Element removed. If nothing is obtained, **undefined** is returned.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The popLast method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); let result = treeSet.popLast(); ``` ### clear clear(): void Clears this container and sets its length to **0**. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The clear method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); treeSet.clear(); ``` ### values values(): IterableIterator<T> Obtains an iterator that contains all the values in this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Return value** | Type| Description| | -------- | -------- | | IterableIterator<T> | Iterator obtained.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The values method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); let it = treeSet.values(); let t: IteratorResult = it.next(); while(!t.done) { console.log("TreeSet: " + t.value); t = it.next() } ``` ### forEach forEach(callbackFn: (value?: T, key?: T, set?: TreeSet<T>) => void, thisArg?: Object): void Uses a callback to traverse the elements in this container and obtain their position indexes. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Parameters** | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | | callbackFn | function | Yes| Callback invoked to traverse the elements in the container.| | thisArg | Object | No| Value of **this** to use when **callbackFn** is invoked. The default value is this instance.| callbackFn | Name| Type| Mandatory| Description| | -------- | -------- | -------- | -------- | | value | T | No| Value of the element that is currently traversed. The default value is the value of the first key-value pair.| | key | T | No| Key of the element that is currently traversed. The default value is the key of the first key-value pair.| | set | TreeSet<T> | No| Instance that calls the **forEach** API. The default value is this instance.| **Error codes** For details about the error codes, see [Universal Error Codes](../errorcode-universal.md) and [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 401 | Parameter error. Possible causes: 1. Mandatory parameters are left unspecified; 2. Incorrect parameter types. | | 10200011 | The forEach method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("sparrow"); treeSet.add("gull"); treeSet.forEach((value ?: string, key ?: string) :void => { console.log("value:" + value, "key:" + key); }); ``` ```ts // You are not advised to use the set or remove APIs in forEach because they may cause unpredictable risks such as infinite loops. You can use the for loop when inserting or deleting data. let treeSet : TreeSet = new TreeSet(); for(let i = 0; i < 10; i++) { treeSet.add("sparrow" + i); } for(let i = 0; i < 10; i++) { treeSet.remove("sparrow" + i); } ``` ### entries entries(): IterableIterator<[T, T]> Obtains an iterator that contains all the elements in this container. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Return value** | Type| Description| | -------- | -------- | | IterableIterator<[T, T]> | Iterator obtained.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The entries method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); let it = treeSet.entries(); let t: IteratorResult = it.next(); while(!t.done) { console.log("TreeSet: " + t.value); t = it.next() } ``` ```ts // You are not advised to use the set or remove APIs in entries because they may cause unpredictable risks such as infinite loops. You can use the for loop when inserting or deleting data. let treeSet : TreeSet = new TreeSet(); for(let i = 0; i < 10; i++) { treeSet.add("sparrow" + i); } for(let i = 0; i < 10; i++) { treeSet.remove("sparrow" + i); } ``` ### [Symbol.iterator] [Symbol.iterator]\(): IterableIterator<T> Obtains an iterator, each item of which is a JavaScript object. **Atomic service API**: This API can be used in atomic services since API version 12. **System capability**: SystemCapability.Utils.Lang **Return value** | Type| Description| | -------- | -------- | | IterableIterator<T> | Iterator obtained.| **Error codes** For details about the error codes, see [Utils Error Codes](errorcode-utils.md). | ID| Error Message| | -------- | -------- | | 10200011 | The Symbol.iterator method cannot be bound. | **Example** ```ts let treeSet : TreeSet = new TreeSet(); treeSet.add("squirrel"); treeSet.add("sparrow"); let numbers = Array.from(treeSet.values()) // Method 1: for (let item of numbers) { console.log("value:" + item); } // Method 2: let iter = treeSet[Symbol.iterator](); let temp: IteratorResult = iter.next().value; while(temp != undefined) { console.log("value:" + temp); temp = iter.next().value; } ``` ```ts // You are not advised to use the set or remove APIs in Symbol.iterator because they may cause unpredictable risks such as infinite loops. You can use the for loop when inserting or deleting data. let treeSet : TreeSet = new TreeSet(); for(let i = 0; i < 10; i++) { treeSet.add("sparrow" + i); } for(let i = 0; i < 10; i++) { treeSet.remove("sparrow" + i); } ```