二叉排序树相对哈希表的优点 Advantages of Binary Search Tree over Hash Table

1.  Binary Search Trees (reference-based) are memory-efficient. They do not reserve more memory than they need to.

     For instance, if a hash function has a range R(h) = 0...100, then you need to allocate an array of 100 (pointers-to) elements,           even if you are just hashing 20 elements.

 2. geting all keys in sorted order by just doing Inorder Traversal of BST. This is not a natural operation in Hash Tables and               requires extra efforts.

3. doing range queries are easy to do with BSTs.  finding closest lower and greater elements, 

4. With Self-Balancing BSTs, all operations are guaranteed to work in O(Logn) time. But with Hashing, Θ(1) is average time and      some particular operations may be costly, especially when table resizing happens.

 

转自:

https://stackoverflow.com/questions/4128546/advantages-of-binary-search-trees-over-hash-tables

https://www.geeksforgeeks.org/advantages-of-bst-over-hash-table/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值