Sunday, March 7, 2021

code for creating node for binary search tree (BST)

 typedef struct node

{

        int number;

        struct node *left;

        struct node *right;

}node;



source: harvard cs50, david malan



No comments:

Post a Comment