在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")