binary_trees

时间:2024-03-30 19:11:19
【文件属性】:

文件名称:binary_trees

文件大小:9KB

文件格式:ZIP

更新时间:2024-03-30 19:11:19

C

0x1D。 C-二叉树 基础-低级编程和算法―数据结构和算法 任务 强制新节点 编写一个创建二叉树节点的函数 Prototype: binary_tree_t *binary_tree_node(binary_tree_t *parent, int value); Where parent is a pointer to the parent node of the node to create And value is the value to put in the new node When created, a node does not have any child Your function must return a pointer to the new node, or NULL on failure 左插入必填项 编写将一个节点作为另一个节点的左子节点插入的函数 Proto


【文件预览】:
binary_trees-master
----2-binary_tree_insert_right.c(912B)
----README.md(7KB)
----3-binary_tree_delete.c(333B)
----7-binary_tree_inorder.c(541B)
----1-binary_tree_insert_left.c(881B)
----8-binary_tree_postorder.c(549B)
----16-binary_tree_is_perfect.c(839B)
----9-binary_tree_height.c(578B)
----12-binary_tree_leaves.c(828B)
----5-binary_tree_is_root.c(328B)
----11-binary_tree_size.c(397B)
----10-binary_tree_depth.c(428B)
----13-binary_tree_nodes.c(770B)
----4-binary_tree_is_leaf.c(350B)
----0-binary_tree_node.c(535B)
----14-binary_tree_balance.c(1007B)
----6-binary_tree_preorder.c(547B)
----binary_trees.h(2KB)

网友评论