Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.25 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How to create and search a non-binary tree in vb.net?
  2. Class MyNode
  3.     Public ChildNodes as new Collection(Of MyNode)
  4.     Public Data as Object
  5.     Public Sub Search(searchString as string) as Collection(Of MyNode)
  6.     ....
  7.     End Sub
  8. End Class