mirror of
https://github.com/happyflyer/wangdao-data-structure.git
synced 2026-02-03 02:24:39 +08:00
12 lines
173 B
C++
12 lines
173 B
C++
#include <stdio.h>
|
|
typedef struct BiTNode
|
|
{
|
|
int data;
|
|
struct BiTNode *Lchild, *rclild;
|
|
} BiTNode, *BiTree;
|
|
|
|
int main(int argc, char const *argv[])
|
|
{
|
|
return 0;
|
|
}
|