Search:

Type: Posts; User: yukster

Search: Search took 0.00 seconds.

  1. Ack! Have to "return" the recursive call! Duh. If...

    Ack! Have to "return" the recursive call! Duh. If it wuz a snake it woulda bit me. Thanks.
  2. declarations

    Here are the type declarations:



    typedef int Tdata;

    typedef struct tree_st
    {
    Tdata data;
    struct tree_st * left;
  3. problem returning struct member from function

    I have a binary search tree made up of struct tree_st nodes. The struct has members TData (which is just a typedefed int) and pointers to left and right trees. Everything is working fine; test...
Results 1 to 3 of 3