VBA集合中读写操作的时间复杂度

时间:2017-08-10 19:23:25

标签: vba time-complexity

在VBA中设置和检索集合的时间复杂度是多少?

假设我创建了一个字典。添加项目的时间复杂性是什么?

Dim studentHeights As New Collection()
studentHeights.Add("6.5","Jerry")
studentHeights.Add("5.5","Tom")
studentHeights.Add("5.35","Garry")
studentHeights.Add("5.85","Helvik")

检索特定项目的时间复杂度是什么?

someVar = studentHeights.Item("Jerry")

0 个答案:

没有答案