开发者

Example uses of Judy trees

开发者 https://www.devze.com 2022-12-15 04:10 出处:网络
I was reading about Judy trees. What are some examples of real world usage and comparis开发者_运维问答ons to other data structures?Judy arrays in Python: http://www.dalkescientific.com/Python/PyJudy.h

I was reading about Judy trees. What are some examples of real world usage and comparis开发者_运维问答ons to other data structures?


Judy arrays in Python: http://www.dalkescientific.com/Python/PyJudy.html

Some Examples uses.

PyJudy arrays are similar to Python dictionaries and sets. The primary difference is that PyJudy keys are sorted; by unsigned value if an integer, byte ordering if a string and object id if a Python object. In addition to wrapping the underlying Judy functions, PyJudy implements a subset of the Python dictionary interface for the JudyL and JudySL API and a subset of the set interface for the Judy1 API, along with some extensions for iterating a subrange of the sorted keys, values and items.

0

精彩评论

暂无评论...
验证码 换一张
取 消