Pre-Order Traversal
Learn the traversal strategy called "Pre-Order Traversal" in a binary search tree, and implement it in C#.
We'll cover the following...
Introduction
In this traversal, the elements are traversed in the root-left-right
order. First visit the root/parent node, then the left child. Then visit the right child. Here is a high-level description of the algorithm for pre-order traversal starting from the root node:
-
Visit the current node, i.e., print the value stored at the node.
-
Call the
preOrderPrint()
function on the left-subtree of thecurrentNode
. -
Call the
preOrderPrint()
function on the right-subtree of thecurrentNode
.
Implementation in C#
Press + to interact
void preOrderPrint(Node currentNode){if (currentNode != null){Console.WriteLine(currentNode.value);preOrderPrint(currentNode.leftChild);preOrderPrint(currentNode.rightChild);}}
Yes, it is as simple as that!
Press + to interact
main.cs
BST.cs
using System;namespace chapter_6{class Node{public int value;public Node leftChild;public Node rightChild;public Node(){value = 0;leftChild = null;rightChild = null;}public Node(int val){value = val;leftChild = null;rightChild = null;}}class BinarySearchTree{Node root;public BinarySearchTree(int rootValue){root = new Node(rootValue);}public BinarySearchTree(){root = null;}public Node getRoot(){return root;}public Node insert(Node currentNode, int val){if (currentNode == null){return new Node(val);}else if (currentNode.value > val){currentNode.leftChild = insert(currentNode.leftChild, val);}else{currentNode.rightChild = insert(currentNode.rightChild, val);}return currentNode;}public void insertBST(int value){if (getRoot() == null){root = new Node(value);return;}insert(this.getRoot(), value);}public void inOrderPrint(Node currentNode){if (currentNode != null){inOrderPrint(currentNode.leftChild);Console.WriteLine(currentNode.value);inOrderPrint(currentNode.rightChild);}}Node searchBST(int value){//let's start with the rootNode currentNode = root;while ((currentNode != null) && (currentNode.value != value)){//the loop will run until the currentNode IS NOT null//and until we get to our valueif (value < currentNode.value){//traverse to the left subtreecurrentNode = currentNode.leftChild;}else{ //traverse to the right subtreecurrentNode = currentNode.rightChild;}}//after the loop, we'll have either the searched value//or null in case the value was not foundreturn currentNode;}public Node search(Node currentNode, int value){if (currentNode == null)return null;else if (currentNode.value == value)return currentNode;else if (currentNode.value > value)return search(currentNode.leftChild, value);elsereturn search(currentNode.rightChild, value);}public bool deleteBST(int value){return Delete(root, value);}public bool Delete(Node currentNode, int value){if (root == null){return false;}Node parent = root; //To Store parent of currentNodewhile ((currentNode != null) && (currentNode.value != value)){parent = currentNode;if (currentNode.value > value)currentNode = currentNode.leftChild;elsecurrentNode = currentNode.rightChild;}if (currentNode == null)return false;else if ((currentNode.leftChild == null) && (currentNode.rightChild == null)){//1. Node is Leaf Node//if that leaf node is the root (a tree with just root)if (root.value == currentNode.value){root = null;return true;}else if (currentNode.value < parent.value){parent.leftChild = null;return true;}else{parent.rightChild = null;return true;}}else if (currentNode.rightChild == null){if (root.value == currentNode.value){root = currentNode.leftChild;return true;}else if (currentNode.value < parent.value){parent.leftChild = currentNode.leftChild;return true;}else{parent.rightChild = currentNode.leftChild;return true;}}else if (currentNode.leftChild == null){if (root.value == currentNode.value){root = currentNode.rightChild;return true;}else if (currentNode.value < parent.value){parent.leftChild = currentNode.rightChild;return true;}else{parent.rightChild = currentNode.rightChild;return true;}}else{//Find Least Value Node in right-subtree of current NodeNode leastNode = findLeastNode(currentNode.rightChild);//Set CurrentNode's Data to the least value in its right-subtreeint tmp = leastNode.value;Delete(root, tmp);currentNode.value = leastNode.value;//Delete the leafNode which had the least valuereturn true;}}//Helper function to find least value node in right-subtree of currentNodepublic Node findLeastNode(Node currentNode){Node temp = currentNode;while (temp.leftChild != null){temp = temp.leftChild;}return temp;}public void preOrderPrint(Node currentNode){if (currentNode != null){Console.WriteLine(currentNode.value);preOrderPrint(currentNode.leftChild);preOrderPrint(currentNode.rightChild);}}}}
Explanation
First, create an object of the ...