Thread: A good tutorials of Linked List

  1. #1
    Registered User
    Join Date
    Nov 2007
    Posts
    23

    Question A good tutorials of Linked List

    Hey, Do any of you know a good source of tutorials for C linked list??

  2. #2
    Deathray Engineer MacGyver's Avatar
    Join Date
    Mar 2007
    Posts
    3,210
    Perhaps you could try the tutorial on this site:

    http://www.cprogramming.com/tutorial/lesson15.html

  3. #3
    Registered User
    Join Date
    Nov 2007
    Posts
    23
    is it the C tutorial or C++ one? because, I saw C++ code:

    http://www.cprogramming.com/tutorial/lesson15.html

    Code:
    conductor = root;
    while ( conductor != NULL ) {
      cout<< conductor->x;
      conductor = conductor->next;
    }

  4. #4
    Deathray Engineer MacGyver's Avatar
    Join Date
    Mar 2007
    Posts
    3,210
    You're right. I selected the wrong one.

    http://www.cprogramming.com/tutorial/c/lesson15.html

  5. #5
    Registered User
    Join Date
    Nov 2007
    Posts
    23
    thank you

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. linked list question
    By mikeman in forum C Programming
    Replies: 1
    Last Post: 11-30-2008, 01:56 PM
  2. Duplicating value of pointer to linked list
    By zephyrcat in forum C Programming
    Replies: 14
    Last Post: 01-22-2008, 03:19 PM
  3. How to use Linked List?
    By MKashlev in forum C++ Programming
    Replies: 4
    Last Post: 08-06-2002, 07:11 AM
  4. singly linked list
    By clarinetster in forum C Programming
    Replies: 2
    Last Post: 08-26-2001, 10:21 PM