MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / main

Function main

CPP/AVL Trees/AVL_Trees.cpp:102–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

100}
101
102int 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}

Callers

nothing calls this directly

Calls 1

insert_bst_recursiveFunction · 0.85

Tested by

no test coverage detected