Linked List implementation in Visual Basic
Category:
Lists, Collections and ArraysType:
SnippetsDifficulty:
IntermediateAuthor:
AnonymousVersion Compatibility: Visual Basic 6, Visual Basic 5
More information:
Since Linked list implementation requires pointer and unfortunately VB don't have any. I implement it by making a data type that has element and "Pointer".this so-called "pointer" acts like a pointer but naturally it is more of an Index. [element|n = 0 ] --> [element|n+1]-->[element|n+2] --> and so on...
( --- feel free to give ur corrections or suggestions --- )
Instructions: Copy the declarations and code below and paste directly into your VB project.
Declarations: