words per minute

4

SubodhSharma


00:00

Speed

Binary Search Tree In computer science, binary search trees (BST), sometimes called ordered or sorted binary trees, are a particular type of container: data structures that store "items" (such as numbers, names etc.) in memory. They allow fast lookup, addition and removal of items, and can be used to implement either dynamic sets of items, or lookup tables that allow finding an item by its key (e.g., finding the phone number of a person by name). Binary search trees keep their keys in sorted order, so that lookup and other operations can use the principle of binary search: when looking for a key in a tree (or a place to insert a new key), they traverse the tree from root to leaf, making comparisons to keys stored in the nodes of the tree and deciding, on the basis of the comparison, to continue searching in the left or right subtrees. On average, this means that each comparison allows the operations to skip about half of the tree, so that each lookup, insertion or deletion takes time proportional to the logarithm of the number of items stored in the tree. This is much better than the linear time required to find items by key in an (unsorted) array, but slower than the corresponding operations on hash tables. A binary search tree of size 9 and depth 3, with 8 at the root. The leaves are not drawn. Insertion insert(value) Pre: value has passed custom type checks for type T Post: value has been placed in the correct location in the tree if root = ø root node(value) else insertNode(root, value) end if end insert insertNode(current, value) Pre: current is the node to start from Post: value has been placed in the correct location in the tree if value < current.value if current.left = ø current.left node(value) else InsertNode(current.left, value) end if else if current.right = ø current.right node(value) else InsertNode(current.right, value) end if end if end insertNode Searching contains(root, value) Pre: root is the root node of the tree, value is what we would like to locate Post: value is either located or not if root = ø return false end if if root.value = value return true else if value < root.value return contains(root.left, value) else return contains(root.right, value) end if end contains Deletion remove(value) Pre: value is the value of the node to remove, root is the node of the BST count is the number of items in the BST Post: node with value is removed if found in which case yields true, otherwise false nodeToRemove findNode(value) if nodeToRemove = ø return false end if parent findParent(value) if count = 1 root ø else if nodeToRemove.left = ø and nodeToRemove.right = ø if nodeToRemove.value < parent.value parent.left nodeToRemove.right else parent.right nodeToRemove.right end if else if nodeToRemove.left = ø and nodeToRemove.right = ø if nodeToRemove.value < parent.value parent.left nodeToRemove.left else parent.right nodeToRemove.left end if else largestValue nodeToRemove.left while largestValue.right = ø largestValue largestValue.right end while findParent(largestValue.value).right ø nodeToRemove.value largestValue.value end if count count - 1 return true end remove
words per minute
0
wpm
accuracy
0%
Text Practice - Time 952 - English

words per minute