冒泡排序 asp 实现的冒泡排序程序
人气:0想了解asp 实现的冒泡排序程序的相关内容吗,在本文为您仔细讲解冒泡排序的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:冒泡排序,下面大家一起来学习吧。
复制代码 代码如下:
arr = array(12,52,14,43,24,58,15,64,24,57,17,56,45)
arrLen = ubound(arr)
for i=0 to arrLen-1
for j = 0 to (arrlen -1)-i
if arr(j)>arr(j+1) then
temp = arr(j)
arr(j)= arr(j+1)
arr(j+1) = temp
end if
next
next
for each l in arr
response.Write l&"<br>"
next
加载全部内容