首页 相关文章 数组数据排序的程序例子

数组数据排序的程序例子

数组数据排序的程序例子



<%
''*** build example array to show that this thing can sort
''*** alpha-numeric arrays
Dim MyArray
MyArray = Array(1,5,"shawn","says","hello"2m骺噃嶤123,12,98)
MyArray = Sort(MyArray)
For I = 0 to Ubound(MyArray)
Response.Write MyArray(I) & "Next
Response.End


''*** Sorter Function that takes an array and sorts it
Function Sort(ary)
KeepChecking = TRUE
Do Until KeepChecking = FALSE
KeepChecking = FALSE
For I = 0 to UBound(ary)
If...[ 查看全文 ]

2016-01-29 标签:

数组数据排序的程序例子的相关文章

手机页面
收藏网站 回到头部