Results 1 to 9 of 9

Thread: Linked lists

  1. #1

    Thread Starter
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181

    Linked lists

    Has anyone ever implemented a linked list in VB that actually saved time from doing the same thing with normal arrays?
    Don't need it right now, was just wondering.
    Sanity is a full time job

    Puh das war harter Stoff!

  2. #2
    Zaei
    Guest
    Linked lists in VB would require classes, and thus be horribly inefficient. Even VB arrays would be faster.

    Z.

  3. #3

    Thread Starter
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181
    well I kind of expected that, just wanted to know since I thik linked lists could be a powerfull tool from time to time.
    Sanity is a full time job

    Puh das war harter Stoff!

  4. #4
    Si_the_geek
    Guest
    Collections are a good substitute for linked lists.. they are slightly slower than arrays for reading/writing elements, but are far superior for adding/removing items.

  5. #5

    Thread Starter
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181
    true
    I don't like collections to much though, but oh well I think I am gonna learn C as soon as I have time (will be in the summer vacation I guess...)
    Sanity is a full time job

    Puh das war harter Stoff!

  6. #6
    Si_the_geek
    Guest
    what's the problem with collections?

  7. #7

    Thread Starter
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181
    well nothing really I am just to used to arrays
    being little conservative you know
    well used them and they did their job...
    Sanity is a full time job

    Puh das war harter Stoff!

  8. #8
    Si_the_geek
    Guest
    I know where you're coming from with that.... I used to be the same, now I use collections wherever I need linked-list style access, they save lots of headaches!

  9. #9

    Thread Starter
    Frenzied Member /\/\isanThr0p's Avatar
    Join Date
    Jul 2000
    Location
    They can't stop us! We're on a misson from God.
    Posts
    1,181
    yeah I think I should start looking into those, but I am lazy and busy
    Sanity is a full time job

    Puh das war harter Stoff!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width