Merge pull request #4644 from bi-/master

Delete the root element from the tree.
This commit is contained in:
Loredana Crusoveanu 2018-08-16 21:14:03 +03:00 committed by GitHub
commit 89d48625f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 3 deletions

View File

@ -57,7 +57,7 @@ public class BinaryTree {
} }
public void delete(int value) { public void delete(int value) {
deleteRecursive(root, value); root = deleteRecursive(root, value);
} }
private Node deleteRecursive(Node current, int value) { private Node deleteRecursive(Node current, int value) {

View File

@ -6,7 +6,7 @@ import static org.junit.Assert.assertTrue;
import org.junit.Test; import org.junit.Test;
public class BinaryTreeTest { public class BinaryTreeUnitTest {
@Test @Test
public void givenABinaryTree_WhenAddingElements_ThenTreeNotEmpty() { public void givenABinaryTree_WhenAddingElements_ThenTreeNotEmpty() {
@ -70,6 +70,17 @@ public class BinaryTreeTest {
assertEquals(initialSize, bt.getSize()); assertEquals(initialSize, bt.getSize());
} }
@Test
public void it_deletes_the_root() {
int value = 12;
BinaryTree bt = new BinaryTree();
bt.add(value);
assertTrue(bt.containsNode(value));
bt.delete(value);
assertFalse(bt.containsNode(value));
}
@Test @Test
public void givenABinaryTree_WhenTraversingInOrder_ThenPrintValues() { public void givenABinaryTree_WhenTraversingInOrder_ThenPrintValues() {

View File

@ -6,7 +6,7 @@ import org.junit.jupiter.api.Assertions;
import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
public class TrieTest { public class TrieUnitTest {
@Test @Test
public void whenEmptyTrie_thenNoElements() { public void whenEmptyTrie_thenNoElements() {