还有就是简单的循环链表怎么搞啊?
这样为什么不行啊?
Dim i As Integer
Dim hd As Integer 'hd为head的缩写,头指针
Dim nt As Integer 'nt为next的缩写,为尾指针
Dim tt(3) As Object
tt(0).hd = tt(3)
tt(3).nt = tt(0)
For i = 1 To 3
tt(i).head = tt(i - 1)
Next i
For i = 0 To 2
tt(i).nxt = tt(i + 1)
Next i
这样为什么不行啊?望指点,并附上正确的代码,不甚感激!