CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: LarryChen

Search: Search took 0.13 seconds.

  1. Replies
    6
    Views
    2,654

    Re: Please help me understand this question.

    I got it. Thank you very much!
  2. Replies
    6
    Views
    2,654

    Re: Please help me understand this question.

    Thanks for your reply. First of all, let me take an example here,
    assume there is four nodes in the list, node 1, node 2, node 3, node 4 like this,

    1=>2=>3=>4

    So the calling sequence would be...
  3. Replies
    6
    Views
    2,654

    Please help me understand this question.

    A question. How to read a singly linked list backwards? Here is the implementation,


    void ReadListBackward(node* head)
    {
    node* p = head;

    if(!p)
    return;
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured