本文整理汇总了TypeScript中datastructures/bintree.BinaryTree类的典型用法代码示例。如果您正苦于以下问题:TypeScript BinaryTree类的具体用法?TypeScript BinaryTree怎么用?TypeScript BinaryTree使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了BinaryTree类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('can find the next and prev node', function() {
const tree = new BinaryTree(numericalCompare)
const n3 = tree.insert(3)
const n1 = tree.insert(1)
const n2 = tree.insert(2)
expect(next(tree, n2)).toBe(n3)
expect(prev(tree, n2)).toBe(n1)
expect(next(tree, n3)).toBe(tree.nil)
expect(prev(tree, n1)).toBe(tree.nil)
})
示例2: function
it('can get sorted keys', function() {
tree.insert(3)
tree.insert(4, 'foo')
tree.insert(2)
expect(tree.keys()).toEqual([2, 3, 4])
})