Thread: link list

  1. #1
    Un Artiste Extraordinaire volk's Avatar
    Join Date
    Dec 2002
    Posts
    357

    Question link list

    How important is it to fully understand using a link list? My programming book doesn't cover link lists? Is that a "new" thing.

    Maybe my book does cover that. Are link lists known by any other name?

  2. #2
    End Of Line Hammer's Avatar
    Join Date
    Apr 2002
    Posts
    6,231
    Link lists are a good exercise, I suggest you learn them. Maybe you need a better book?

    There are plenty of snippets on these forums, see what you can find.
    When all else fails, read the instructions.
    If you're posting code, use code tags: [code] /* insert code here */ [/code]

  3. #3
    Code Goddess Prelude's Avatar
    Join Date
    Sep 2001
    Posts
    9,897
    >How important is it to fully understand using a link list?
    Very. The concepts introduced by linked lists are used a great deal in more complex data structures. If you cannot make a linked list then you have little hope of manipulating more useful structures or even answering interview questions correctly. Such questions are very common in interviews because the data structure is simple enough for relatively quick questions and a decent judge of your knowledge base.

    >My programming book doesn't cover link lists?
    It may be too basic of a book. I admit this does surprise me, just about every book I can think of at least touches on linked lists. Those that don't are too specialized or assume you already know them.

    -Prelude
    My best code is written with the delete key.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Unknown memory leak with linked lists...
    By RaDeuX in forum C Programming
    Replies: 6
    Last Post: 12-07-2008, 04:09 AM
  2. Link List Insert prob
    By Bebs in forum C Programming
    Replies: 8
    Last Post: 12-03-2008, 10:28 PM
  3. reading data from a file - link list
    By peter_hii in forum C++ Programming
    Replies: 7
    Last Post: 10-25-2006, 09:11 AM
  4. compiler build error
    By KristTlove in forum C++ Programming
    Replies: 2
    Last Post: 11-30-2003, 10:16 AM
  5. singly linked list
    By clarinetster in forum C Programming
    Replies: 2
    Last Post: 08-26-2001, 10:21 PM