查找

作者: SetsunaChiya | 来源:发表于2016-12-09 10:16 被阅读0次

    线性查找方式
    顺序查找 Sequential Search
    折半查找 Binary Search
    索引查找 Indexing Search

    |顺序查找|折半查找|索引查找
    -|-|-|-
    ASL|Largest|Smallest|MIddle
    List Structure|Ordered/Unordered|Ordered|Ordered/indexing table
    Storage Structure|Array/Linked List|Array|Array/Linked List

    二叉搜索树 Binary Search Tree
    左子树 < 根结点 < 右子树
    key是唯一的
    B-树 B-Tree

    哈希

    相关文章

      网友评论

          本文标题:查找

          本文链接:https://www.haomeiwen.com/subject/bblemttx.html