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

Search:

Type: Posts; User: dotnet13

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    1,948

    Re: Linked List problem

    You don't seem to understand a simple Linked List program, before inserting the 1st node head is always null because (*ptrtohead)=&head=null, and after insertion it will have the address of the 1st...
  2. Replies
    8
    Views
    1,948

    Linked List problem

    #include <stdio.h>
    #include <stdlib.h>


    typedef struct Node
    {
    int data;
    struct Node *next;
    }node;
  3. Replies
    13
    Views
    1,803

    Re: Need solution for some problems urgently!!!!

    Actually everyone here misinterpreted what I have said, what I meant was that asking directly for code is not fair at all. Hope you guys will understand now :) :)
  4. Replies
    13
    Views
    1,803

    Re: Need solution for some problems urgently!!!!

    hmm, that's unfair I guess
  5. Replies
    13
    Views
    1,803

    Re: Need solution for some problems urgently!!!!

    lol yet to solve and actually even if I find 1 the time complexity will not be great for sure
  6. Replies
    13
    Views
    1,803

    Re: Need solution for some problems urgently!!!!

    ya but need efficient ones :( :( help will be really appreciable
  7. Replies
    13
    Views
    1,803

    Need solution for some problems urgently!!!!

    3121931221312233122531227
Results 1 to 7 of 7





Click Here to Expand Forum to Full Width

Featured