vb代码中,如何在一组排好序的数组中插入一个数,并按着原来的顺序排列 写出代码,谢谢了 5

 我来答
raynors
2012-12-09 · TA获得超过108个赞
知道小有建树答主
回答量:136
采纳率:0%
帮助的人:94.5万
展开全部
function NumInsert(num,numindex,source_array(),source_array_count) as integer()
rem //num =要插入的数据
rem //numindex =要插入的位置
rem //source_array(),原始队列
rem //source_array_count=原始队列数据数量

dim abc(source_array_count+1) as integer '新建队列
dim i as integer
'将后面的数据复制到新队列
for i= source_array_count to numindex step -1
abc(i+1)=source_array(i)
next

‘ 将前面的数据复制到新队列
for i= 0 to numindex -1
abc(i)=source_array(i)
next

'插入数据
abc(numindex )= num

return abc
end function
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
iisheng
2012-12-09 · TA获得超过308个赞
知道小有建树答主
回答量:531
采纳率:100%
帮助的人:482万
展开全部
Private Sub Command1_Click()
Dim s1() As Integer, I As Integer, s2 As String
Dim t1 As Integer, t2 As Integer
ReDim s1(10)
For I = 0 To 10
s1(I) = I
Next
s2 = InputBox("请输入数值和位置,格式:值|位置", "", "31|2")
If s2 <> "" Then
t1 = Mid(s2, 1, InStr(1, s2, "|") - 1)
t2 = Mid(s2, InStr(1, s2, "|") + 1, 10)

If t2 <= UBound(s1) Then

ReDim Preserve s1(UBound(s1) + 1)
For I = UBound(s1) To t2 Step -1
s1(I) = s1(I - 1)
Next
s1(t2) = t1
Else
ReDim Preserve s1(UBound(s1) + 1)
s1(UBound(s1)) = t1
End If
End If

For I = 0 To UBound(s1)
Print s1(I)
Next

End Sub
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
风雪剑无痕
2012-12-09 · TA获得超过1253个赞
知道大有可为答主
回答量:1691
采纳率:100%
帮助的人:1685万
展开全部
redim,再在数组里排序
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式