VBA中的哈希表/关联数组


Answers:


109

我认为您正在寻找Microsoft脚本运行时库中的Dictionary对象。(从VBE中的“工具...参考”菜单中添加对项目的参考。)

它几乎可以与任何适合变体的简单值一起工作(键不能是数组,并且试图使它们成为对象没有多大意义。请参见下面@Nile的注释。):

Dim d As dictionary
Set d = New dictionary

d("x") = 42
d(42) = "forty-two"
d(CVErr(xlErrValue)) = "Excel #VALUE!"
Set d(101) = New Collection

如果您的需求更简单并且只需要字符串键,则也可以使用VBA Collection对象。

我不知道任何一个实际上是否都散列在任何事物上,因此如果需要类似散列表的性能,则可能需要进一步研究。(编辑:Scripting.Dictionary确实在内部使用哈希表。)


是的-字典就是答案。我也在这个网站上找到了答案。stackoverflow.com/questions/915317/…– 2009
158 user158017

2
这是一个很好的答案:但是键绝不是对象-实际发生的是该对象的默认属性被转换为字符串并用作键。如果对象没有定义默认属性(通常是“名称”),则此方法将无效。
Nigel Heffernan 2014年

@尼罗河,谢谢。我看到你确实是正确的。看起来如果该对象没有默认属性,则对应的字典键为Empty。我相应地编辑了答案。
jtolle

一些数据结构解释这里- analystcave.com/... 这篇文章展示了如何使用.NEXT哈希表在Excel VBA- stackoverflow.com/questions/8677949/...
佐尼为什么

以上链接输入错误:.NET,而不是.NEXT。
约翰尼,为什么



6

我们开始...只需将代码复制到模块即可使用

Private Type hashtable
    key As Variant
    value As Variant
End Type

Private GetErrMsg As String

Private Function CreateHashTable(htable() As hashtable) As Boolean
    GetErrMsg = ""
    On Error GoTo CreateErr
        ReDim htable(0)
        CreateHashTable = True
    Exit Function

CreateErr:
    CreateHashTable = False
    GetErrMsg = Err.Description
End Function

Private Function AddValue(htable() As hashtable, key As Variant, value As Variant) As Long
    GetErrMsg = ""
    On Error GoTo AddErr
        Dim idx As Long
        idx = UBound(htable) + 1

        Dim htVal As hashtable
        htVal.key = key
        htVal.value = value

        Dim i As Long
        For i = 1 To UBound(htable)
            If htable(i).key = key Then Err.Raise 9999, , "Key [" & CStr(key) & "] is not unique"
        Next i

        ReDim Preserve htable(idx)

        htable(idx) = htVal
        AddValue = idx
    Exit Function

AddErr:
    AddValue = 0
    GetErrMsg = Err.Description
End Function

Private Function RemoveValue(htable() As hashtable, key As Variant) As Boolean
    GetErrMsg = ""
    On Error GoTo RemoveErr

        Dim i As Long, idx As Long
        Dim htTemp() As hashtable
        idx = 0

        For i = 1 To UBound(htable)
            If htable(i).key <> key And IsEmpty(htable(i).key) = False Then
                ReDim Preserve htTemp(idx)
                AddValue htTemp, htable(i).key, htable(i).value
                idx = idx + 1
            End If
        Next i

        If UBound(htable) = UBound(htTemp) Then Err.Raise 9998, , "Key [" & CStr(key) & "] not found"

        htable = htTemp
        RemoveValue = True
    Exit Function

RemoveErr:
    RemoveValue = False
    GetErrMsg = Err.Description
End Function

Private Function GetValue(htable() As hashtable, key As Variant) As Variant
    GetErrMsg = ""
    On Error GoTo GetValueErr
        Dim found As Boolean
        found = False

        For i = 1 To UBound(htable)
            If htable(i).key = key And IsEmpty(htable(i).key) = False Then
                GetValue = htable(i).value
                Exit Function
            End If
        Next i
        Err.Raise 9997, , "Key [" & CStr(key) & "] not found"

    Exit Function

GetValueErr:
    GetValue = ""
    GetErrMsg = Err.Description
End Function

Private Function GetValueCount(htable() As hashtable) As Long
    GetErrMsg = ""
    On Error GoTo GetValueCountErr
        GetValueCount = UBound(htable)
    Exit Function

GetValueCountErr:
    GetValueCount = 0
    GetErrMsg = Err.Description
End Function

要在您的VB(A)应用中使用:

Public Sub Test()
    Dim hashtbl() As hashtable
    Debug.Print "Create Hashtable: " & CreateHashTable(hashtbl)
    Debug.Print ""
    Debug.Print "ID Test   Add V1: " & AddValue(hashtbl, "Hallo_0", "Testwert 0")
    Debug.Print "ID Test   Add V2: " & AddValue(hashtbl, "Hallo_0", "Testwert 0")
    Debug.Print "ID Test 1 Add V1: " & AddValue(hashtbl, "Hallo.1", "Testwert 1")
    Debug.Print "ID Test 2 Add V1: " & AddValue(hashtbl, "Hallo-2", "Testwert 2")
    Debug.Print "ID Test 3 Add V1: " & AddValue(hashtbl, "Hallo 3", "Testwert 3")
    Debug.Print ""
    Debug.Print "Test 1 Removed V1: " & RemoveValue(hashtbl, "Hallo_1")
    Debug.Print "Test 1 Removed V2: " & RemoveValue(hashtbl, "Hallo_1")
    Debug.Print "Test 2 Removed V1: " & RemoveValue(hashtbl, "Hallo-2")
    Debug.Print ""
    Debug.Print "Value Test 3: " & CStr(GetValue(hashtbl, "Hallo 3"))
    Debug.Print "Value Test 1: " & CStr(GetValue(hashtbl, "Hallo_1"))
    Debug.Print ""
    Debug.Print "Hashtable Content:"

    For i = 1 To UBound(hashtbl)
        Debug.Print CStr(i) & ": " & CStr(hashtbl(i).key) & " - " & CStr(hashtbl(i).value)
    Next i

    Debug.Print ""
    Debug.Print "Count: " & CStr(GetValueCount(hashtbl))
End Sub

18
我不会拒绝投票代码的全新用户,但通常将其称为“哈希表”意味着底层实现实际上是哈希表!您在这里拥有的是一个关联数组,该数组通过常规数组加线性搜索实现。区别见此处:en.wikipedia.org/wiki/Hash_table
jtolle 2011年

7
确实。哈希表的要点是密钥的“哈希”导致其值在基础存储中的位置(或在允许重复密钥的情况下至少足够近),因此消除了潜在的昂贵搜索需求。
Cor_Blimey 2012年

3
对于较大的哈希表来说太慢了。添加17,000个条目需要15秒钟以上。我可以在6秒钟内使用字典添加500,000。使用mscorlib哈希表在不到3秒的时间内达到500,000。
Christopher Thomas Nicodemus 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.