Thread: singly linked list

  1. #1
    Burning in Hell! Luigi's Avatar
    Join Date
    Nov 2002
    Posts
    117

    singly linked list

    HI
    I just red the tutorial here on singly linked list.
    but I'm not sure I got it all right.

    does any1 has concrete exemple of what can be done with that?

    I mean why should use that in my programs?

    is it reallly useful?

    thx luigi..

  2. #2
    Burning in Hell! Luigi's Avatar
    Join Date
    Nov 2002
    Posts
    117
    I asked bjarne stroustrup..
    here's what he told me..

    struct link {link* next; int i;} list ={&list,0};

    thats not helping..

    link is just like node in tutorial..
    but what is the list part?

    luigi

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Anyone good with linked list.....I am not....
    By chadsxe in forum C++ Programming
    Replies: 11
    Last Post: 11-10-2005, 02:48 PM
  2. Replies: 6
    Last Post: 03-02-2005, 02:45 AM
  3. How can I traverse a huffman tree
    By carrja99 in forum C++ Programming
    Replies: 3
    Last Post: 04-28-2003, 05:46 PM
  4. Contest Results - May 27, 2002
    By ygfperson in forum A Brief History of Cprogramming.com
    Replies: 18
    Last Post: 06-18-2002, 01:27 PM
  5. singly linked list
    By clarinetster in forum C Programming
    Replies: 2
    Last Post: 08-26-2001, 10:21 PM