7,787
社区成员
发帖
与我相关
我的任务
分享
dim lng(36000) as long '这个是你要检测的原始数组
dim bol() as boolean
dim i as long,idx as long
redim lngnew(3600) as long '这个是没有重复值的新数组
redim bol(数组lng的最大值)
idx=-1
for i=0 to 36000
if not bol(lng(i)) then
idx=idx+1
lngnew(idx)=lng(i)
bol(lng(i))=true
end if
next
redim preserve lngNew(idx)