Binary Tree - Array Implementation
Binary Tree implemented by Array
How does tree looks when implemented via Array?
- Left Child - cell[2x]
- Right Child - cell[2x+1]
- cell[0] = null
Creation of Binary tree
1 | createBinaryTree() |
- Time Complexity : O(1)
- Space Complextiy : O(n)
Insertion of node
- Insertion
- If array is full, return error message
- Insert at first vacant cell in Array
1 | insertValueInBinaryTree() |
- Time Complexity : O(1)
- Space Complextiy : O(1)
Search a node
- Search
- When the value to be searched does not exists in the tree
- When the value to be searched exists in the tree
1 | searchValueInBinaryTree() |
- Time Complexity : O(n)
- Space Complextiy : O(1)
In-Order Traversal
1 | InorderTraversal(index) |
- Time Complexity : O(n)
- Space Complextiy : O(n) —- stack에 쌓이기 때문에
Levle-Order Traversal
1 | levelOrderTraversal() |
- Time Complexity : O(n)
- Space Complextiy : O(1)
Deletion of Node
- Deletion
- When the value to be deleted is not existing in the tree
- When the value to be deleted is exists in the tree
1 | deleteNodeFromBinaryTree() |
- Time Complexity : O(n)
- Space Complextiy : O(1)
Delete Binary Tree
1 | deleteBinaryTree() |
- Time Complexity : O(1)
- Space Complextiy : O(1)