Simple 1d array bubble sort module

By | 2002-06-01

Simply sorts a 1 dimensional array using a bubble sort algorythm.

Original Author: Colin Woor

Inputs

Array to be sorted

Returns

A sorted array

Code

'
'Use:
'
'Sort Array
'
'to sort (A-Z / 1-10, Accending)
'Pretty easy to update it to sort 2 or 3 dimensional arrays
'Or to sort decending
'
'Comments or any info email: col@woor.co.uk
'
Public Sub sort(tmparray)
Dim SortedArray As Boolean
Dim start, Finish As Integer
SortedArray = True
start = LBound(tmparray)
Finish = UBound(tmparray)
Do
  SortedArray = True
  For loopcount = start To Finish - 1
    
    If tmparray(loopcount) > tmparray(loopcount + 1) Then
      SortedArray = False
      Call swap(tmparray, loopcount, loopcount + 1)
    End If
    
  Next loopcount
Loop Until SortedArray = True

End Sub
Sub swap(swparray, fpos, spos)
Dim temp As Variant
temp = swparray(fpos)
swparray(fpos) = swparray(spos)
swparray(spos) = temp
End Sub

Date:2002-06-01

Migrated:Not Migrated

VB Fixer

VERY VERY Simple — I got tired of downloading project files and having to manually take out the Retained=0 line from the project file to use in VB 5.0 — This does that for you..simple code, simple process

Original Author: Stephen King

Attachments

FileUploadedSize
CODE_UPLOAD31741312000.zip9/3/2020 3:45:00 PM9151
Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.