樹每每要比python內置的dict類慢一些,可是它中的全部數據都是按照某個關鍵詞進行排序的,故在某些狀況下是必須使用的。python
python中的二叉樹模塊內容:git
from bintrees import RBTree btree = RBTree() btree.insert('111',"first") btree.insert('333', "second") btree.insert('2222', "thirdly") print btree # result : RBTree({'111': 'first', '2222': 'thirdly', '333': 'second'})
其餘API看源碼或官方文檔: https://github.com/mozman/bintreesgithub