trees notes
trees notes
A graph which has no cycle is called an acyclic graph. A tree is an acyclic graph or graph
having no cycles.
A tree or general trees is defined as a non-empty finite set of elements called vertices or
nodes having the property that each node can have minimum degree 1 and maximum
degree n. It can be partitioned into n+1 disjoint subsets such that the first subset
contains the root of the tree and remaining n subsets includes the elements of the n
subtree.
Directed Trees:
A directed tree is an acyclic directed graph. It has one node with indegree 1, while all
other nodes have indegree 1 as shown in fig:
The node which has outdegree 0 is called an external node or a terminal node or a leaf.
The nodes which have outdegree greater than or equal to one are called internal node.
25.8M
556
How to find Nth Highest Salary in SQL
Ordered Trees:
If in a tree at each level, an ordering is defined, then such a tree is called an ordered
tree.
Example: The trees shown in the figures represent the same tree but have different
orders.
Properties of Trees:
1. There is only one path between each pair of vertices of a tree.
2. If a graph G there is one and only one path between each pair of vertices G is a
tree.
3. A tree T with n vertices has n-1 edges.
4. A graph is a tree if and only if it a minimal connected.
Rooted Trees:
If a directed tree has exactly one node or vertex called root whose incoming degrees is 0
and all other vertices have incoming degree one, then the tree is called rooted tree.
Binary Trees:
If the outdegree of every node is less than or equal to 2, in a directed tree than the tree is called a binary tree. A
tree consisting of the nodes (empty tree) is also a binary tree. A binary tree is shown in fig:
Basic Terminology:
Root: A binary tree has a unique node called the root of the tree.
Left Child: The node to the left of the root is called its left child.
Right Child: The node to the right of the root is called its right child.
1. Preorder Traversal
2. Postorder Traversal
3. Inorder Traversal
1. Preorder Traversal: The preorder traversal of a binary tree is a recursive process.
The preorder traversal of a tree is
3. Inorder Traversal: The inorder traversal of a binary tree is a recursive process. The
inorder traversal of a tree is
32.7M
565
Hello Java Program for Beginners
Example: Determine the preorder, postorder and inorder traversal of the binary tree as
shown in fig:
Solution: The preorder, postorder and inorder traversal of the tree is as follows:
Preorder 1 2 3 4 5 6 7 8 9 10 11
Postorder 3 5 4 2 7 10 9 11 8 6 1
Inorder 3 2 5 4 1 7 6 9 10 8 11
It is not necessary that a node in a 'Binary Search Tree' point to the nodes whose value
immediately precede and follow it.
31.1M
676
C++ vs Java
Example: Show the binary search tree after inserting 3, 1,4,6,9,2,5,7 into an initially
empty binary search tree.
Solution: The insertion of the above nodes in the empty binary search tree is shown in
fig:
Deletion in a Binary Search Tree: Consider a binary tree T. Suppose we want to
delete a given ITEM from binary search tree. To delete an ITEM from a binary search tree
we have three cases, depending upon the number of children of the deleted node.
1. Deleted Node has no children: Deleting a node which has no children is very
simple, as replace the node with null.
2. Deleted Node has Only one child: Replace the value of a deleted node with the
only child.
3. Deletion node has only two children: In this case, replace the deleted node
with the node that is closest in the value to the deleted node. To find the nearest
value, we move once to the left and then to the right as far as possible. This node
is called the immediate predecessor. Now replace the value of the deleted node
with the immediate predecessor and then delete the replaced node by using case1
or case2.
Example: Show that the binary tree shown in fig (viii) after deleting the root node.
Solution: To delete the root node, first replace the root node with the closest elements
of the root. For this, first, move one step left and then to the right as far as possible to
the node.Then delete the replaced node. The tree after deletion shown in fig:
Spanning Tree
A subgraph T of a connected graph G is called spanning tree of G if T is a tree and T
include all vertices of G.
Step-01:
Step-02:
Select the next minimum cost edge which is adjacent to the initial minimum cost edge.
Step-03:
Keep repeating step-02 until all the vertices are included and Minimum Spanning Tree (MST) is
obtained that satisfies the following conditions
a) There should be all (n) vertices
b) The spanning tree consisting of minimum number of edges(n-1)
c) The spanning tree should not form a loop.
Problem-01:
Construct the minimum spanning tree (MST) for the given graph using Prim’s Algorithm-
Solution-
The above discussed steps are followed to find the minimum cost spanning tree using Prim’s Algorithm-
Step-01:
Step-02:
Step-03:
Step-04:
Step-05:
Step-06:
Since all the vertices have been included in the MST, so we stop.
Using Prim’s Algorithm, find the cost of minimum spanning tree (MST) of the given graph-
Solution-
The minimum spanning tree obtained by the application of Prim’s Algorithm on the given graph is as
shown below-
Step-01:
Take the edge with the lowest weight and use it to connect the vertices of graph.
If adding an edge creates a cycle, then reject that edge and go for the next least weight edge.
Step-03:
Keep adding edges until all the vertices are connected and a Minimum Spanning Tree (MST) is
obtained.
Problem-01:
Construct the minimum spanning tree (MST) for the given graph using Kruskal’s Algorithm-
Solution-
Step-01:
Step-02:
Step-03:
Step-04:
Step-05:
Step-06:
Step-07:
Since all the vertices have been connected / included in the MST, so we stop.
Weight of the MST
= Sum of all edge weights
= 10 + 25 + 22 + 12 + 16 + 14
= 99 units
31.9M
734
1. Input the given connected weighted graph G with n vertices whose minimum
spanning tree T, we want to find.
2. Order all the edges of the graph G according to increasing weights.
3. Initialize T with all vertices but do include an edge.
4. Add each of the graphs G in T which does not form a cycle until n-1 edges are
added.
Example1: Determine the minimum spanning tree of the weighted graph shown in fig:
Solution: Using kruskal's algorithm arrange all the edges of the weighted graph in
increasing order and initialize spanning tree T with all the six vertices of G. Now start
adding the edges of G in T which do not form a cycle and having minimum weights until
five edges are not added as there are six vertices.
Step1:
Step2:
Step3:
Step4:
Step5:
Step6: Edge (A, B), (D, E) and (E, F) are discarded because they will form the cycle in a
graph.
So, the minimum spanning tree form in step 5 is output, and the total cost is 18.
Example2: Find all the spanning tree of graph G and find which is the minimal spanning
tree of G shown in fig:
Solution: There are total three spanning trees of the graph G which are shown in fig:
To find the minimum spanning tree, use the KRUSKAL'S ALGORITHM. The minimal
spanning tree is shown in fig:
The first one is the minimum spanning having the minimum weight = 11.