Swap strings the fast way

Swap strings the fast way

Consider the usual way of swapping two strings:

Dim s1 As String, s2 As StringDim tmp As String' initialize the strings s1 = String$(1000, "-")s2 = String$(1500, "+")' do the swap, through a temporary variabletmp = s1s1 = s2s2 = tmp

If you put the above code in a time-critical loop (such as when you are sorting an array) and the strings you’re working with are rather long, this code becomes relatively slow, because it has to allocate a new string, copy a lot of characters, and then deallocate the memory for the temporary strings used in the meantime.

A more linear approach consists of just exchanging the contents of the string descriptors for the two s1 and s2 strings, withouth actually moving any character in memory and, above all, without having to allocate and release memory. The following code can be 20+ faster than the previous approach, depending on how long the strings you’re processing are:

Private Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (dest As _    Any, source As Any, ByVal numBytes As Long)Dim saveAddr As Long ' save the descriptor of first stringsaveAddr = StrPtr(s1)' copy the s2's descriptor into s1's descriptor (32 bit)CopyMemory ByVal VarPtr(s1), ByVal VarPtr(s2), 4' complete the swapping of descriptorsCopyMemory ByVal VarPtr(s2), saveAddr, 4

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several