I find it hard to believe that a redim preserve would be slower than your loop unless it were itself inside the loop.
In which case, for raw speed, don't count the number of 1's in arIn just to set the size of ar. Since ar can never be bigger than arIn, just set it to the same size and redim-preserve at the end (won't be slower since it's outside the loop and will always be trimming, not expanding - VB hopefully can do this in-place rather than allocating more memory). In addition, cache size of arIn in case VB calculates it each time through the loop (likely if ReDim's are allowed).
Private Function theThing() As Integer()
Dim x As Integer
'arIn() would be a parameter
Dim arIn() As Integer = {0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1}
Dim ar(arIn.GetUpperBound(0)) As Integer
Dim arCount As Integer
Dim arInCount As Integer
arCount = 0
arInCount = arIn.GetUpperBound(0)
For x = 1 To arIn.GetUpperBound(0)
arInCount
If arIn(x) = 1 Then
ar(arCount) = x
arCount += 1
End If
Next
ReDim Preserve ar(arCount)
Return ar
End Function
Alternatively, you could remove the redim altogether if you tweak slightly what's returned. Make the return array one bigger than the input array and use the first element to control which parts of the array you'll select randomly.
For your sample, the returned array would be:
{8,2,4,5,7,9,10,11,14,?,?,?,?,?,?} (? values are irrelevant).
^ <-------+--------> <----+---->
| | |
| | +-- These are unused.
| |
| +-- These are used.
|
+-- This is the count of elements to use.
That code would be:
Private Function theThing() As Integer()
Dim x As Integer
'arIn() would be a parameter
Dim arIn() As Integer = {0, 1, 0, 1, 1, 0, 1, 0, 1, 1, 1, 0, 0, 1}
Dim ar(arIn.GetUpperBound(0)+1) As Integer
Dim arCount As Integer
Dim arInCount As Integer
arCount = 0
arInCount = arIn.GetUpperBound(0)
For x = 1 To arIn.GetUpperBound(0)
arInCount
If arIn(x) = 1 Then
ar(arCount) = x
arCount += 1
End If
Next
ar(0) = arCount
Return ar
End Function
Then, in your code which selects a random value from ar, instead of:
rndval = rnd(ar.GetUpperBound)
use:
rndval = rnd(ar(0) + 1)
