Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: vinkesh79
  • Order by date
  1. vinkesh79

    Checkers

    in this for(j=0;j<k;i++) its not i++ its j++ (hope) (-:
  2. vinkesh79

    n-ary trees**

    hey no probs i am sorry i did not get ur question? the only structure u need is struct node { int data; struct node *lnode; struct node *rnode; }; typedef struct node *NODE; if u r not clear dont hesitate 2 ask
  3. vinkesh79

    n-ary trees**

    As u know there r 2 paths in a BTree. So u need lchild & rchild in ur structure. initiall ur ur first node will b ur parent . I have 4gotten the exact concept of how to traverse in a binary tree i.e where 2 go first (left or right) so u have to decide. i am assuming right. now check...
  4. vinkesh79

    n-ary trees**

    you might have to use linked list. declare a parent and a child. initially the parent & child will pt to the 1st node. now the implementation part: check whether parent is null ( for no elements) if not increment the child till child->next==NULL; then copy the element which u want 2 insert i.e...

Part and Inventory Search

Back
Top