目录 二叉搜索树 Binary Search Tree 用C构建二叉树ADT 树结构的定义 C Primer Plus--高级数据结构表示之二叉树 二叉搜索树 Binary Search Tree 二叉树是一种高级数据结构.树中的每个节点都包含一个项目和两个指向其他节点的指针. 每个节点都有两个子节点:左节点.右节点.在左节点中的项目是父节点中项目的前序向,而在右节点中的项目是父节点项目的后序向. 二叉树中每一个节点本身是其后代节点的根,此节点与其后代节点构成一个子树,子树有左右之分. 用C构建…
高级数据结构之 BloomFilter 布隆过滤器 https://en.wikipedia.org/wiki/Bloom_filter A Bloom filter is a space-efficient probabilistic data structure, conceived by Burton Howard Bloom in 1970, that is used to test whether an element is a member of a set. False posit…