LinkedList<T>.FindLast(T) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
查找包含指定值的最后一个节点。
public:
System::Collections::Generic::LinkedListNode<T> ^ FindLast(T value);
public System.Collections.Generic.LinkedListNode<T> FindLast (T value);
public System.Collections.Generic.LinkedListNode<T>? FindLast (T value);
member this.FindLast : 'T -> System.Collections.Generic.LinkedListNode<'T>
Public Function FindLast (value As T) As LinkedListNode(Of T)
参数
- value
- T
要在 LinkedList<T> 中定位的值。
返回
如果找到,则为包含指定值的最后一个 LinkedListNode<T>;否则为 null
。
示例
有关包含此方法的示例,请参阅 LinkedList<T> 类。
注解
LinkedList<T>从 开始Last向后搜索,在 处结束First。
此方法执行线性搜索;因此,此方法是 O (n
) 操作,其中 n
为 Count。