Thread: Linked List

  1. #1
    Registered User
    Join Date
    Nov 2003
    Posts
    2

    Smile Linked List

    Hi,

    can anybody explain me what this linked list are.. and if possible can i have a link or documentation which can explain me in great detail..

    i have gone through the tutorial in this site.. but something more elaborative will be of gr8 help.

    Thanking you in advance

  2. #2
    Registered User
    Join Date
    Jan 2002
    Location
    Vancouver
    Posts
    2,212
    Linked lists are a list of items that are linked.
    .
    They usually consist of a struct containing some data and a pointer to the next struct in the list (and sometimes the previous struct in the list). If it's at the end of the list, the next pointer is NULL, or if it is at the beginning of the list, the previous pointer is NULL.

    http://vergil.chemistry.gatech.edu/r...ial/lists.html

  3. #3
    Registered User
    Join Date
    Nov 2003
    Posts
    2
    i suppose this one is much better..

    http://www1.cs.columbia.edu/~novik/c...es/lect06.html

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. C++ Linked list program need help !!!
    By dcoll025 in forum C++ Programming
    Replies: 1
    Last Post: 04-20-2009, 10:03 AM
  2. Following CTools
    By EstateMatt in forum C Programming
    Replies: 5
    Last Post: 06-26-2008, 10:10 AM
  3. Reverse function for linked list
    By Brigs76 in forum C++ Programming
    Replies: 1
    Last Post: 10-25-2006, 10:01 AM
  4. Template Class for Linked List
    By pecymanski in forum C++ Programming
    Replies: 2
    Last Post: 12-04-2001, 09:07 PM
  5. singly linked list
    By clarinetster in forum C Programming
    Replies: 2
    Last Post: 08-26-2001, 10:21 PM