| 100 | } |
| 101 | |
| 102 | int main(){ |
| 103 | fastIO; |
| 104 | |
| 105 | root = insert_bst_recursive(root, 10); |
| 106 | // cout << root -> data; |
| 107 | insert_bst_recursive(root, 5); |
| 108 | insert_bst_recursive(root, 2); |
| 109 | |
| 110 | cout << root -> data; |
| 111 | |
| 112 | return 0; |
| 113 | } |
nothing calls this directly
no test coverage detected