This commit is contained in:
ada.dmitry
2023-05-16 12:35:39 +03:00
parent 58a2573b52
commit dc4a1158f6
9 changed files with 192 additions and 81 deletions
+3 -3
View File
@@ -7,10 +7,10 @@ int main(int argc, char *argv[])
{
tree *root = NULL;
root = init_root(root, 'A');
preorder(root);
printf("\n");
// preorder(root);
root = del_node(root, 'A');
preorder(root);
exit(0);
// preorder(root);
printf("\n");
root = add_node(root, 'F');
root = add_node(root, 'B');