linkedhashset
6 分钟阅读
原文:https://pkg.go.dev/github.com/emirpasic/gods/v2@v2.0.0-alpha/sets/linkedhashset
收录该文档时间:
2024-12-07T11:08:14+08:00
Overview
Package linkedhashset is a set that preserves insertion-order.
linkedhashset
包实现了保持插入顺序的集合(Set)。
It is backed by a hash table to store values and doubly-linked list to store ordering.
它基于哈希表存储值,并通过双向链表维护元素的顺序。
Note that insertion-order is not affected if an element is re-inserted into the set.
需要注意的是,如果一个元素被重新插入到集合中,其插入顺序不会受到影响。
Structure is not thread safe.
该结构不是线程安全的。
References: http://en.wikipedia.org/wiki/Set_%28abstract_data_type%29
常量
This section is empty.
变量
This section is empty.
函数
This section is empty.
类型
type Iterator
|
|
Iterator holding the iterator’s state
保存迭代器状态的结构。
(*Iterator[T]) Begin
|
|
Begin resets the iterator to its initial state (one-before-first) Call Next() to fetch the first element if any.
Begin 将迭代器重置到其初始状态(在第一个元素之前)。调用 Next()
获取第一个元素(如果存在)。
(*Iterator[T]) End
|
|
End moves the iterator past the last element (one-past-the-end). Call Prev() to fetch the last element if any.
End 将迭代器移动到最后一个元素之后(超出范围)。调用 Prev()
获取最后一个元素(如果存在)。
(*Iterator[T]) First
|
|
First moves the iterator to the first element and returns true if there was a first element in the container. If First() returns true, then first element’s index and value can be retrieved by Index() and Value(). Modifies the state of the iterator.
First 将迭代器移动到第一个元素并返回 true
,如果容器中存在第一个元素。若返回 true
,则可以通过 Index()
和 Value()
获取第一个元素的索引和值。修改迭代器的状态。
(*Iterator[T]) Index
|
|
Index returns the current element’s index. Does not modify the state of the iterator.
Index 返回当前元素的索引。不修改迭代器的状态。
(*Iterator[T]) Last
|
|
Last moves the iterator to the last element and returns true if there was a last element in the container. If Last() returns true, then last element’s index and value can be retrieved by Index() and Value(). Modifies the state of the iterator.
Last 将迭代器移动到最后一个元素并返回 true
,如果容器中存在最后一个元素。若返回 true
,则可以通过 Index()
和 Value()
获取最后一个元素的索引和值。修改迭代器的状态。
(*Iterator[T]) Next
|
|
Next moves the iterator to the next element and returns true if there was a next element in the container. If Next() returns true, then next element’s index and value can be retrieved by Index() and Value(). If Next() was called for the first time, then it will point the iterator to the first element if it exists. Modifies the state of the iterator.
Next 将迭代器移动到下一个元素并返回 true
,如果容器中存在下一个元素。若返回 true
,则可以通过 Index()
和 Value()
获取下一个元素的索引和值。首次调用 Next()
时,如果存在元素,将指向第一个元素。修改迭代器的状态。
(*Iterator[T]) NextTo
|
|
NextTo moves the iterator to the next element from current position that satisfies the condition given by the passed function, and returns true if there was a next element in the container. If NextTo() returns true, then next element’s index and value can be retrieved by Index() and Value(). Modifies the state of the iterator.
NextTo 将迭代器从当前位置移动到满足条件的下一个元素,并返回 true
,如果容器中存在这样的元素。若返回 true
,则可以通过 Index()
和 Value()
获取该元素的索引和值。修改迭代器的状态。
(*Iterator[T]) Prev
|
|
Prev moves the iterator to the previous element and returns true if there was a previous element in the container. If Prev() returns true, then previous element’s index and value can be retrieved by Index() and Value(). Modifies the state of the iterator.
Prev 将迭代器移动到上一个元素并返回 true
,如果容器中存在上一个元素。若返回 true
,则可以通过 Index()
和 Value()
获取上一个元素的索引和值。修改迭代器的状态。
(*Iterator[T]) PrevTo
|
|
PrevTo moves the iterator to the previous element from current position that satisfies the condition given by the passed function, and returns true if there was a next element in the container. If PrevTo() returns true, then next element’s index and value can be retrieved by Index() and Value(). Modifies the state of the iterator.
PrevTo 将迭代器从当前位置移动到满足条件的上一个元素,并返回 true
,如果容器中存在这样的元素。若返回 true
,则可以通过 Index()
和 Value()
获取该元素的索引和值。修改迭代器的状态。
(*Iterator[T]) Value
|
|
Value returns the current element’s value. Does not modify the state of the iterator.
Value 返回当前元素的值。不修改迭代器的状态。type Set
|
|
Set holds elements in go’s native map
集合类型,使用 Go 的原生 map
存储元素。
func New
|
|
New instantiates a new empty set and adds the passed values, if any, to the set
New 实例化一个新的空集合,并添加传入的值(如果有)。
(*Set[T]) Add
|
|
Add adds the items (one or more) to the set. Note that insertion-order is not affected if an element is re-inserted into the set.
Add 将一个或多个元素添加到集合中。注意,如果一个元素已存在于集合中,其插入顺序不会改变。
(*Set[T]) All
|
|
All passes each element of the container to the given function and returns true if the function returns true for all elements.
All 将集合中的每个元素传递给给定函数。如果函数对所有元素都返回 true
,则返回 true
。
(*Set[T]) Any
|
|
Any passes each element of the container to the given function and returns true if the function ever returns true for any element.
Any 将集合中的每个元素传递给给定函数。如果函数对任意元素返回 true
,则返回 true
。
(*Set[T]) Clear
|
|
Clear clears all values in the set.
Clear 清空集合中的所有元素。
(*Set[T]) Contains
|
|
Contains check if items (one or more) are present in the set. All items have to be present in the set for the method to return true. Returns true if no arguments are passed at all, i.e. set is always superset of empty set.
Contains 检查一个或多个元素是否存在于集合中。所有元素都必须存在才能返回 true
。如果没有传入任何参数,则始终返回 true
。
(*Set[T]) Difference
|
|
Difference returns the difference between two sets. The new set consists of all elements that are in “set” but not in “another”.
Difference 返回两个集合的差集,新集合包含 “set” 中存在但 “another” 中不存在的所有元素。
Ref: https://proofwiki.org/wiki/Definition:Set_Difference
(*Set[T]) Each
|
|
Each calls the given function once for each element, passing that element’s index and value.
Each 遍历集合中的每个元素,并将索引和值传递给给定函数。
(*Set[T]) Empty
|
|
Empty returns true if set does not contain any elements.
Empty 如果集合不包含任何元素,则返回 true
。
(*Set[T]) Find
|
|
Find passes each element of the container to the given function and returns the first (index,value) for which the function is true or -1,nil otherwise if no element matches the criteria.
Find 将集合中的每个元素传递给给定函数,并返回第一个满足条件的元素的索引和值。如果没有匹配元素,则返回 -1,nil
。
(*Set[T]) FromJSON
|
|
FromJSON populates the set from the input JSON representation.
FromJSON 根据输入的 JSON 表示填充集合。
(*Set[T]) Intersection
|
|
Intersection returns the intersection between two sets. The new set consists of all elements that are both in “set” and “another”.
Intersection 返回两个集合的交集,新集合包含同时存在于 “set” 和 “another” 中的所有元素。
Ref: https://en.wikipedia.org/wiki/Intersection_(set_theory)
(*Set[T]) Iterator
|
|
Iterator returns a stateful iterator whose values can be fetched by an index.
Iterator 返回一个状态化的迭代器,可以通过索引获取值。
(*Set[T]) Map
|
|
Map invokes the given function once for each element and returns a container containing the values returned by the given function.
Map 遍历集合中的每个元素,调用给定函数,并返回包含函数返回值的新集合。
(*Set[T]) MarshalJSON
|
|
MarshalJSON @implements json.Marshaler
MarshalJSON @实现接口 json.Marshaler
(*Set[T]) Remove
|
|
Remove removes the items (one or more) from the set. Slow operation, worst-case O(n^2).
Remove 从集合中移除一个或多个元素(较慢,最坏情况为 O(n^2))。
(*Set[T]) Select
|
|
Select returns a new container containing all elements for which the given function returns a true value.
Select 返回一个新集合,包含所有满足给定函数条件的元素。
(*Set[T]) Size
|
|
Size returns number of elements within the set.
Size 返回集合中的元素数量。
(*Set[T]) String
|
|
String returns a string representation of container
String 返回集合的字符串表示。
(*Set[T]) ToJSON
|
|
ToJSON outputs the JSON representation of the set.
ToJSON 输出集合的 JSON 表示。
(*Set[T]) Union
|
|
Union returns the union of two sets. The new set consists of all elements that are in “set” or “another” (possibly both).
Union 返回两个集合的并集,新集合包含 “set” 或 “another”(可能同时存在于两者中)的所有元素。
Ref: https://en.wikipedia.org/wiki/Union_(set_theory)
(*Set[T]) UnmarshalJSON
|
|
UnmarshalJSON @implements json.Unmarshaler
UnmarshalJSON @实现接口 json.Unmarshaler
(*Set[T]) Values
|
|
Values returns all items in the set.
Values 返回集合中的所有元素。