gpt4 book ai didi

c# - .NET BCL API 或框架方法的时间复杂度

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:12:41 24 4
gpt4 key购买 nike

有什么方法可以知道 .NET 预定义方法的确切时间复杂度。就像我想知道

的复杂性一样
String.Contains() 

 Hashtable.ContainsKey()

Microsoft 是否共享此信息?

最佳答案

是的,在 MSDN 中:)

  1. Hashtable.ContainsKey Method :

This method is an O(1) operation.

  1. Enumerable.Contains Method (IEnumerable, TSource) :

If the type of source implements ICollection, the Contains method in that implementation is invoked to obtain the result. Otherwise, this method determines whether source contains the specified element.

Enumeration is terminated as soon as a matching element is found.

因此,对于 String,它将是 O(n)。

关于c# - .NET BCL API 或框架方法的时间复杂度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5563150/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com