mirror of
https://github.com/happyflyer/wangdao-data-structure.git
synced 2026-05-01 14:11:21 +08:00
完成线索二叉树
This commit is contained in:
11
ch5/binary-tree-storage/link.cpp
Normal file
11
ch5/binary-tree-storage/link.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include <stdio.h>
|
||||
typedef struct BiTNode
|
||||
{
|
||||
int data;
|
||||
struct BiTNode *Lchild, *rclild;
|
||||
} BiTNode, *BiTree;
|
||||
|
||||
int main(int argc, char const *argv[])
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user