View on GitHub
# https://en.wikipedia.org/wiki/Binary_tree
from blist import sorteddict

# create new b-tree
b_tree = sorteddict(first="Michael", last="Sjoeberg", birthday=[1750, 1, 1])
b_tree
# sorteddict({'birthday': [1750, 1, 1], 'first': 'Michael', 'last': 'Sjoeberg'})

# add key=value
b_tree['email'] = "[email protected]"
b_tree
# sorteddict({'birthday': [1750, 1, 1], 'email': '[email protected]', 'first': 'Michael', 'last': 'Sjoeberg'})

# list keys
list(b_tree.keys())
# ['birthday', 'email', 'first', 'last']
      

Updated on May 27, 2023 Changelog