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

Search:

Type: Posts; User: talhakhan797

Search: Search took 0.03 seconds.

  1. Re: Explain the code please,how it outputs 2.

    It is actually a sample final exam question given by our professor.
  2. Re: Explain the code please,how it outputs 2.

    The thing i dont understand is regarding the recursion call and how the double pointers will work in this code.
  3. Explain the code please,how it outputs 2.

    #include<iostream>
    using namespace std;
    #include<string>;

    class node {
    public:
    int num;
    class node * next;
    node(int n)
    {
  4. Replies
    2
    Views
    2,778

    Text Justification

    I need some guidance in this code,how can i start off with. As there is not much material on internet about this type of code so i need some help from you guys. thanks.



    ...
  5. Replies
    4
    Views
    6,839

    Re: Binary Search tree

    The only problem i am having now is that id's are not been printed except root node but when i debug the program and print the current and root note by inserting cout,it shows everything...
  6. Replies
    4
    Views
    6,839

    Binary Search tree

    I am unable to implement the insert function properly,every time i run the program i just get the first value and name,i am not getting other Id's and name.Please help!Thanks



    "(Header File)"
    ...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured