首页 > 代码库 > 研碎bst

研碎bst

bst :binary search tree(二叉搜索树)

对于树中的每个节点n,左子树中的所有节点的关键字都小于节点n的关键字,右子树中所有节点的关键字都大于节点n的关键字

struct  node{

  int        key;

  struct   node   *left;     //左节点

  struct   node   *right;  //右节点

};