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