Bubble Sort
Techniques
This section makes it possible to gather a whole of techniques or scripts which have the originality to manage to solve a difficulty with the least effort or which are particularly effective...The grayed entries relate to the future headings which will supplement soon this toolbox.
Techniques / Array Sorting with ASP
- Various techniques to order your array in ASP:
In many applications ASP we can be to bring to sort out array. This tutorial aims at distinguishing plusieures possible techniques then to realize a comparative degree.
Bubble Sort :
This algorithm of sorting of array is probably the most known for lack of being the most effective:
<% Dim arrValue
arrValue = Array(12,24,51,24,15,35,15,65,418)
Function BubbleSort(arrInt)
for i = UBound(arrInt) - 1 To 0 Step -1
for j= 0 to i
if arrInt(j)>arrInt(j+1) then
temp = arrInt(j+1)
arrInt(j+1) = arrInt(j)
arrInt(j) = temp
end if
next
next
BubbleSort = arrInt
end function
response.write Join(BubbleSort(arrValue),",")
%>