コード例 #1
0
def test_treap():
    exercise_sset(ods.SkiplistSSet())
コード例 #2
0
def test_bst():
    exercise_sset(ods.BTree(11))
コード例 #3
0
ファイル: test_xfasttrie.py プロジェクト: GaganJotSingh/ods
def test_bst():
    exercise_sset(ods.XFastTrie())
コード例 #4
0
def test_treap():
    exercise_sset(ods.SkiplistSSet())
コード例 #5
0
def test_bst():
    exercise_sset(ods.ScapegoatTree())
コード例 #6
0
def test_rbt():
    exercise_sset(ods.RedBlackTree())
コード例 #7
0
ファイル: test_binarysearchtree.py プロジェクト: zehsilva/ods
def test_bst():
    exercise_sset(ods.BinarySearchTree())
コード例 #8
0
def test_bst():
    exercise_sset(ods.BinaryTrie())
コード例 #9
0
def test_bst():
    exercise_sset(ods.ScapegoatTree())
コード例 #10
0
def test_bst():
    exercise_sset(ods.XFastTrie())
コード例 #11
0
ファイル: test_treap.py プロジェクト: GaganJotSingh/ods
def test_treap():
    exercise_sset(ods.Treap())
コード例 #12
0
ファイル: test_btree.py プロジェクト: GaganJotSingh/ods
def test_bst():
    exercise_sset(ods.BTree(11))
コード例 #13
0
ファイル: test_binarytrie.py プロジェクト: GaganJotSingh/ods
def test_bst():
    exercise_sset(ods.BinaryTrie())
コード例 #14
0
def test_treap():
    exercise_sset(ods.Treap())
コード例 #15
0
def test_rbt():
    exercise_sset(ods.RedBlackTree())