gpt4 book ai didi

c# - string.ElementAt() 是 O(1) 吗?

转载 作者:太空狗 更新时间:2023-10-29 17:51:16 25 4
gpt4 key购买 nike

备注下,it

If the type of source implements IList, that implementation is used to obtain the element at the specified index. Otherwise, this method obtains the specified element.

String不执行 IList<T> .这是否意味着这将是一个 O(n)如果我声明类似的操作,

IEnumerable<char> myString = "stringy";

?

最佳答案

ElementAt当应用于 string 类型时将是一个 O(N) 操作。它没有实现 IList<char>因此 ElementAt不会对其进行任何优化,而是通过 IEnumerable<char> 进行枚举直到达到指定的索引。

关于c# - string.ElementAt() 是 O(1) 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4318260/

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