computer-science icon indicating copy to clipboard operation
computer-science copied to clipboard

a bug for binaryTree remove method

Open 412799755 opened this issue 5 years ago • 0 comments

var tree = new BinaryTree(); tree.insert(20); tree.insert(10); tree.insert(15); tree.insert(16); tree.insert(5); tree.insert(8); tree.insert(7); tree.insert(25); tree.remove(10); if you remove the node 10,node 7 will be removed unexpectedly

412799755 avatar Jun 04 '19 07:06 412799755