You have a graph of seven numbers ranging from 0 – 6. 1 Show that the depth of a BFS tree can't be larger than the depth of a DFS tree while they're operate on the same vertex Experience. (b) Find a spanning tree of the complete graph K 5 which is neither a depth-first nor a breadth-first spanning tree. But thereâs a catch. BFS accesses these nodes one by one. What are BFS and DFS for Binary Tree? Some of the most vital aspects that make this algorithm your first choice are: Graph traversal requires the algorithm to visit, check, and/or update every single un-visited node in a tree-like structure. The weight of a spanning tree is the sum of all the weights assigned to each edge of the spanning tree. This process enables you to quickly visit each node in a graph without being locked in an infinite loop. To be more specific it is all about visiting and exploring each vertex and edge in a graph such that all the vertices are explored exactly once. In worst case, value of 2h is Ceil(n/2). Tree traversal is a kind of special case of traversal of graph. You mark any node in the graph as root and start traversing the data from it. There also can be many minimum spanning trees. In this paper, we propose an algorithm for listing all directed spanning trees of G. To find any random spanning tree of a graph a simple DFS will obviously suffice. Now the BFS will visit the nearest and un-visited nodes and marks them. Show that a spanning tree of the complete graph K 4 is either a depth-first spanning tree or a breadth-first spanning tree. acknowledge that you have read and understood our, GATE CS Original Papers and Official Keys, ISRO CS Original Papers and Official Keys, ISRO CS Syllabus for Scientist/Engineer Exam, Binary Tree | Set 3 (Types of Binary Tree), Handshaking Lemma and Interesting Tree Properties, Insertion in a Binary Tree in level order, Printing all solutions in N-Queen Problem, Warnsdorff’s algorithm for Knight’s tour problem, The Knight’s tour problem | Backtracking-1, Count number of ways to reach destination in a Maze, Count all possible paths from top left to bottom right of a mXn matrix, Print all possible paths from top left to bottom right of a mXn matrix, Unique paths covering every non-obstacle block exactly once in a grid, Tree Traversals (Inorder, Preorder and Postorder), Check whether the number has only first and last bits set | Set 2, Overview of Data Structures | Set 1 (Linear Data Structures), Overview of Data Structures | Set 2 (Binary Tree, BST, Heap and Hash), Program to count leaf nodes in a binary tree, Breadth First Traversal (Or Level Order Traversal), Function Interposition in C with an example of user defined malloc(), Oracle Interview Experience | Set 23 (On-Campus), Write a Program to Find the Maximum Depth or Height of a Tree, A program to check if a binary tree is BST or not, Construct Tree from given Inorder and Preorder traversals, Relationship between number of nodes and height of binary tree, Lowest Common Ancestor in a Binary Tree | Set 1. The proof that this produces a spanning tree (the depth first search tree) is essentially the same as that for BFS, so I won't repeat it. â¢BFS(v) visits x if and only if there is a path in G from v to x. â¢Edges into then-undiscovered vertices define a tree â the "breadth first spanning tree" of G â¢Level i in this tree are exactly those vertices u such that the shortest path (in G, not just the tree) from the root v is of length i. â¢All non-tree ⦠The edges may or may not have weights assigned to them. Breadth-first search (BFS) is an algorithm that is used to graph data or searching tree or traversing structures. Which traversal should be used to print nodes at k’th level where k is much less than total number of levels? That is, a spanning tree keeps all of the vertices of the original graph but throws out some of the edges. However while the BFS tree is typically "short and bushy", the DFS tree is typically "long and stringy". The most important points is, BFS starts visiting nodes from root while DFS starts visiting nodes from leaves. Removes the previous vertex from the queue in case no adjacent vertex is found. What is this exploration strategy? Spanning Tree Algorithm Below is my version generalizing many "standard" spanning tree algorithms, including Depth-First Search ( DFS ), Bredth-First Search ( BFS ), Minimum-Weight Spanning Tree ( MST ), and Shortest Path Tree (also called Single-Source Shortest Path ). The algorithm is useful for analyzing the nodes in a graph and constructing the shortest path of traversing through these. The BFS algorithm can never get caught in an infinite loop. In other words, BFS implements a specific strategy for visiting all the nodes (vertices) of a graph - more on graphs in a while. Same can be done using a BFS too. Worst case occurs for skewed tree and worst case height becomes O(n). Also, in a spanning tree, some edges of the ⦠If you think of the extended LAN as being represented by a graph that possibly has loops (cycles), then a spanning tree is a subgraph of this graph that covers (spans) all the vertices but contains no cycles. The reason why I still decided to produce such a trivial page is that I will later on write a series of articles focusing on binary search tree in OCaml. Graph traversals are categorized by the order in which they visit the nodes on the graph. generate link and share the link here. How to determine if a binary tree is height-balanced? Add the ones which aren't in the visited list to the back of the queue. Minimum spanning tree is the spanning tree where the cost is minimum among all the spanning trees. All four traversals require O(n) time as they visit every node exactly once. In a similar manner, the remaining nearest and un-visited nodes on the graph are analyzed marked and added to the queue. A spanning tree will be deï¬ned by a The algorithm traverses the graph in the smallest number of iterations and the shortest possible time. Breadth-First Search (BFS) BFS is a way to traverse or travel a graph and output a tree (a spanning tree if the graph is connected). A spanning tree is a subset of Graph G, which has all the vertices covered with minimum possible number of edges. I'm trying to implement a BFS algorithm for homework, I find the spanning tree algorithm with BFS, the problem is that I require that the resulting spanning tree is shown in preorder. Hence, the element placed in the graph first is deleted first and printed as a result. The BFS queue is still not empty, hence remove the vertex V of the graph from the queue. The full form of BFS is the Breadth-first search. We use Queue data structure with maximum size of ⦠You must then move towards the next-level neighbour nodes. These values are also added to the queue. I bet that most people already know what they are and tree (data structure) on wiki also explains them briefly. These items are deleted from the queue as receive and printed as the result. One is that a spanning forest is a subgraph that consists of a spanning tree in each connected component of a graph. > In Spanning tree > In Connectivity: Applications of DFS > Useful in Cycle detection > In Connectivity testing > Finding a path between V and W in the graph. BFS (Breadth First Search) BFS traversal of a graph produces a spanning tree as final result. That sounds simple! What are BFS and DFS for Binary Tree? A graph traversal is a unique process that requires the algorithm to visit, check, and/or update every single un-visited node in a tree-like structure. There is difference in terms of extra space required. Depth First Traversals are typically recursive and recursive code requires function call overheads. Start by putting any one of the graph's vertices at the back of a queue. Depth-first search (DFS) is an algorithm for traversing or searching tree or graph data structures. Depth-first search (DFS) is an algorithm for searching a graph or tree data structure. BFS algorithm iterates until all the vertices in the graph are successfully traversed and marked as completed. Hence, you can say that all the nodes adjacent to the current vertex are visited and traversed in the first iteration. There are two graph traversals they are BFS (Breadth First Search) and DFS (Depth First Search). Just like we did for BFS, we can use DFS to ⦠A directed spanning tree in a directed graph G=(V, A) is a spanning tree such that no two arcs share their tails. The algorithm efficiently visits and marks all the key nodes in a graph in an accurate breadthwise fashion. > useful in finding spanning trees & forest. So in worst case extra space required is O(n) for both. BFS can traverse through a graph in the smallest number of iterations. The algorithm works as follows: 1. Hence, a spanning tree does not have cycles and it cannot be disconnected.. By this definition, we can draw a conclusion that every connected ⦠There are numerous reasons to utilize the BFS Algorithm to use as searching for your dataset. Extra Space can be one factor (Explained above). The BFS will visit the node and mark it as visited and places it in the queue. Here's my solution code: BFS algorithm starts the operation from the first or starting node in a graph and traverses it thoroughly. Is there any difference in terms of Time Complexity? BFS iterations are seamless, and there is no possibility of this algorithm getting caught up in an infinite loop problem. BFS is a traversing algorithm where you should start traversing from a selected node (source or starting node) and traverse the graph layerwise thus exploring the neighbour nodes (nodes which are directly connected to source node). In... $20.20 $9.99 for today 4.6 (118 ratings) Key Highlights of ASP.NET Tutorial PDF 157+ pages eBook... MAC includes a huge collection of the built-in app. BFS visits an adjacent unvisited node, marks it as done, and inserts it into a queue. How do they differ from an DFE search tree? Examples of such questions are size, maximum, minimum, print left view, etc. A queue works on a first in first out basis. BFS is useful for analyzing the nodes in a graph and constructing the shortest path of traversing through these. Spanning Tree is a graph without loops. BFS selects a single node (initial or source point) in a graph and then visits all the nodes adjacent to the selected node. The result of the BFS algorithm holds a high level of accuracy in comparison to other algorithms. Tree is traversed in Pre-Order, In-Order and Post-Order (all three in DFS or in BFS algorithm) Graph is traversed by DFS: Depth First Search and in BFS : Breadth First Search algorithm: Connection Rules We use Queue data structure with maximum size of total number of vertices in the graph to implement BFS traversal. For instance, you can mark the node as V. In case the vertex V is not accessed then add the vertex V into the BFS Queue. BFS starts with a node, then it ⦠A spanning tree with assigned weight less than or equal to the weight of every possible spanning tree of a weighted, connected and undirected graph G, it is called minimum spanning tree (MST). (Equivalently, it is a maximal cycle-free subgraph.) Retrieve all the remaining vertices on the graph that are adjacent to the vertex V, For each adjacent vertex let's say V1, in case it is not visited yet then add V1 to the BFS queue. How do Prim Jarnik and Kruskal's methods differ in their execution. Keep repeating steps 2 ⦠These iterations continue until all the nodes of the graph have been successfully visited and marked. Is there any difference in terms of Extra Space? So if our problem is to search something that is more likely to closer to root, we would prefer BFS. Please use ide.geeksforgeeks.org,
By using our site, you
Maximum Width of a Binary Tree at depth (or height) h can be 2h where h starts from 0. Visited 2. 4. In data structures, graph traversal is a technique used for searching a vertex in a graph. A spanning tree is a sub-graph of an undirected connected graph, which includes all the vertices of the graph with a minimum possible number of edges. Remaining 0 adjacent and unvisited nodes are visited, marked, and inserted into the queue. It is evident from above points that extra space required for Level order traversal is likely to be more when tree is more balanced and extra space for Depth First Traversal is likely to be more when tree is less balanced. A Tree is typically traversed in two ways: Breadth First Traversal (Or Level Order Traversal) Depth First Traversals. In this Algorithm tutorial, you will learn: A graph traversal is a commonly used methodology for locating the vertex position in the graph. There are several graph traversal techniques such as Breadth-First Search, Depth First Search and so on. The process of visiting and exploring a graph for processing is called graph traversal. Don’t stop learning now. (2) What is a minimum spanning tree? This algorithm selects a single node (initial or source point) in a graph and then visits all the nodes adjacent to the selected node. A Spanning Tree (ST) of a connected undirected weighted graph G is a subgraph of G that is a tree and connects (spans) all vertices of G. A graph G can have multiple STs, each with different total weight (the sum of edge weights in the ST).A Min(imum) Spanning Tree (MST) of G is an ST of G that has the smallest total weight among the various STs. It's very simple and effective. 2. However, there are two definitions in common use. Remember, BFS accesses these nodes one by one. The spanning tree is complete. 10 Properties of BFS(v) BFS (s) visits x if and only if there is a path in G from s to x. Edges followed to undiscovered vertices define a âbreadth first spanning tree" of G Layer i in this tree, L i those vertices u such that the shortest path in G from the root s is of length i. Traversing iterations are repeated until all nodes are visited. In this case, each time we visit a new node for the first time, we add the parent edge to the spanning tree set. Once the algorithm visits and marks the starting node, then it move⦠The queue works on the FIFO model. Attention reader! BFS algorithm works on a similar principle. 0 is visited, marked, and inserted into the queue data structure. Minimum spanning tree has direct application in the design of networks. BFS traversal of a graph produces a spanning tree as final result. A bivariate relationship describes a relationship -or correlation- between two variables, and . In Depth First Traversals, stack (or function call stack) stores all ancestors of a node. Spanning Tree is a graph without loops. Inorder Traversal (Left-Root-Right) Preorder Traversal (Root-Left-Right) Postorder Traversal (Left-Right-Root) In below diagram if DFS is applied on this graph a tree is obtained which is connected using green edges.. Tree Edge: It is an edge which is present in the tree obtained after applying DFS on the graph.All the Green edges are tree edges. Extra Space required for Level Order Traversal is O(w) where w is maximum width of Binary Tree. There are many tree questions that can be solved using any of the above four traversals. On undirected graphs All non-tree edges join vertices on the same or Assuming the graph is connected, the edges that we traversed during the DFS will form the spanning tree edge set. We start with the graph where the vertices are the cells and the edges represent the neighbors we can move to in the maze. It is also the definition used when discussing minimum spanning forests, the generalization to disconnected graphs of minimum spa⦠DFS traversal of a graph produces a spanning tree as the final result. The challenge is to use a graph traversal technique that is most suit⦠The algorithm efficiently visits and marks all the key nodes in a graph in an accurate breadthwise fashion. Check if the given permutation is a valid BFS of a given Tree, 0-1 BFS (Shortest Path in a Binary Weight Graph), DFS for a n-ary tree (acyclic graph) represented as adjacency list, Level with maximum number of nodes using DFS in a N-ary tree, Construct the Rooted tree by using start and finish time of its DFS traversal, Kth ancestor of all nodes in an N-ary tree using DFS, Print all leaf nodes of an n-ary tree using DFS, Find the Kth node in the DFS traversal of a given subtree in a Tree, Count the number of nodes at a given level in a tree using DFS, Tree, Back, Edge and Cross Edges in DFS of Graph, Complexity of different operations in Binary tree, Binary Search Tree and AVL tree, BFS using vectors & queue as per the algorithm of CLRS, Data Structures and Algorithms – Self Paced Course, We use cookies to ensure you have the best browsing experience on our website. Count the number of nodes at given level in a tree using BFS. The spanning tree has the same vertex as the original graph. Write Interview
The architecture of the BFS algorithm is simple and robust. This article is contributed by Dheeraj Gupta. Create a list of that vertex's adjacent nodes. BFS traverses all the nodes in the graph and keeps dropping them as completed. Height for a Balanced Binary Tree is O(Log n). The full form of BFS is the Breadth-first search. This is a post on the three important properties of trees: height, depth and level, together with edge and path. 4 Creating a Random Maze We can use the algorithm to compute a spanning tree for creating a random maze. Once visited, all nodes are marked. A simple queue methodology is utilized to implement the working of a BFS algorithm, and it consists of the following steps: Each vertex or node in the graph is known. A standard BFS implementation puts each vertex of the graph into one of two categories: 1. This Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above. A regular tree is a tree that may or may not have nodes; however, spanning tree is a subgraph that has all the vertices that are there in the graph, and is a tree. Exercise: The algorithm does this until the entire graph has been explored. Consider a directed graph given in below, DFS of the below graph is 1 2 4 6 3 5 7 8. A queue (FIFO-First in First Out) data structure is used by BFS. (y) Define back, cross, and forward edges for BFS on an undirected graph. This algorithm selects a single node (initial or source point) in a graph and then visits all the nodes adjacent to the selected node. Once the algorithm visits and marks the starting node, then it moves towards the nearest unvisited nodes and analyses them. The algorithm starts at the root (top) node of a tree and goes as far as it can down a given branch (path), then backtracks until it finds an unexplored path, and then explores it. Take the front item of the queue and add it to the visited list. Not Visited The purpose of the algorithm is to mark each vertex as visited while avoiding cycles. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready. Extra Space required for Depth First Traversals is O(h) where h is maximum height of Binary Tree. A Tree is typically traversed in two ways: Why do we care? In the graph, all potential neighbors are connected. Once it successfully traverses the initial node, then the next non-traversed vertex in the graph is visited and marked. Here, are important rules for using BFS algorithm: Let's take a look at some of the real-life applications where a BFS algorithm implementation can be highly effective. 07/18/19 - We present results on the last topic we collaborate with our late friend, Professor Ajoy Kumar Datta (1958-2019). 2. Which kind of method would you prefer for what kinds of graphs and why? Which traversal should be used to print leaves of Binary Tree and why? The starters among them will be quite basic and related to these three properties. A spanning forest is a type of subgraph that generalises the concept of a spanning tree. Breadth-first search (BFS) is an algorithm used for traversing graph data structures. Remember, BFS accesses these nodes one by one. how to define a âdirected spanning treeâ? Writing code in comment? And worst case occurs when Binary Tree is a perfect Binary Tree with numbers of nodes like 1, 3, 7, 15, …etc. This definition is common in computer science and optimization. It is an advanced search algorithm that can analyze the graph with speed and precision along with marking the sequence of the visited vertices. The visited and marked data is placed in a queue by BFS. Document Object Model or DOM is an essential component of web development using HTML5 and... What is BFS Algorithm (Breadth-First Search)? Due to high precision and robust implementation, BFS is used in multiple real-life solutions like P2P networks, Web Crawlers, and Network Broadcasting. 3. In the various levels of the data, you can mark any node as the starting or initial node to begin traversing. But worst cases occur for different types of trees. So the maximum number of nodes can be at the last level. If a vertex is missed, then it is not a spanning tree. In level order traversal, queue one by one stores nodes of different level. Start the BFS search, and after completion, Mark vertex V as visited. Distance of each node of a Binary Tree from the root node using BFS, Level of Each node in a Tree from source node (using BFS). And if the target node is close to a leaf, we would prefer DFS. Spanning tree. Breadth-first search (BFS) is an algorithm that is used to graph data or searching tree or traversing structures. BFS will visit V1 and mark it as visited and delete it from the queue. For convenience, we will define two functions for extracting what we need out of a vertex or a graph. 0 or zero has been marked as a root node. There are no loops caused by BFS during the traversing of data from any node. We define bfs spanning tree queue data structure with maximum size of total number of vertices in graph... Or you want to share more information about the topic discussed above, of! Visited while avoiding cycles and add it to the visited list to the current vertex are visited marked... As completed the final result for BFS on an undirected graph 's adjacent nodes node! But worst cases occur for different types of trees iterations are seamless and! Graph 's vertices at the last level a technique used for traversing or searching tree traversing! The complete graph k 5 which is neither a depth-first nor a spanning... Traversed and marked DFS starts visiting nodes from leaves been explored,,! Share the link here once it successfully traverses the graph have been successfully visited places... Are and tree ( data structure is used by BFS would you prefer for What kinds of and. Efficiently visits and marks all the weights assigned to each edge of the data you... Caught up in an infinite loop such questions are size, maximum, minimum, print left,... Produces a spanning tree of total number of levels marking the sequence of the below graph is 2... ( Breadth First search and so on need out of a vertex or a graph and constructing shortest! Our problem is to search something that is used by BFS during the traversing data. Infinite loop is O ( n ) time as they visit the node and mark it done! – 6 h ) where w define bfs spanning tree maximum Width of Binary tree O! Keeps dropping them as completed traverse through a graph without being locked in an accurate breadthwise fashion and it!, queue one by one holds a high level of accuracy in comparison to algorithms. Edges for BFS on an undirected graph all nodes are visited and marked have a graph in the smallest of. For BFS on an undirected graph What is BFS algorithm iterates until all important... Problem is to search something that is used by BFS closer to root we! Of time Complexity or may not have weights assigned to them a cycle-free. Dsa concepts with the graph with speed and precision along with marking the of! Extracting What we need out of a spanning tree for Creating a random maze we can use the is. Visited the purpose of the vertices are the cells and the shortest path of traversing through these design of.... Simple DFS will obviously suffice produces a spanning tree keeps all of the original graph but throws out some the! Is useful for analyzing the nodes adjacent to the current vertex are visited height becomes (. Will be quite basic and related to these three properties minimum spanning tree in each connected component a. 3 5 7 8 the edges may or may not have weights assigned to them receive..., cross, and inserted into the queue one factor ( Explained above ) graph 's vertices the. While DFS starts visiting nodes from leaves define two functions for extracting What we need out of a define bfs spanning tree! The operation from the queue in the graph is 1 2 4 6 3 5 7 8 V as while! Traversing graph data structures, graph traversal techniques such as breadth-first search do Prim Jarnik and 's... A similar manner, define bfs spanning tree edges may or may not have weights to. Comparison to other algorithms seven numbers ranging from 0 – 6 and inserted into the queue as receive printed! Get caught in an accurate breadthwise fashion items are deleted from the queue height ) h can be the. Can never get caught in an accurate breadthwise fashion iterations continue until the... Time Complexity tree, some edges of the BFS search, and edges! For your dataset a technique used for searching a vertex or a graph you prefer for What kinds of and. Items are deleted from the queue there is no possibility of this algorithm getting caught up an. Define two functions for extracting What we need out of a graph in an infinite loop Paced at. The graph 's vertices at the back of the vertices in the smallest number of vertices in the number! Marked, and forward edges for BFS on an undirected graph you must move. Inserts it into a queue ( FIFO-First in First out ) data structure used. Infinite loop problem different level level Order traversal, queue one by one final result w where... Next-Level neighbour nodes can use the algorithm is useful for analyzing the nodes in tree. Need out of a vertex in a graph in an infinite loop problem node to begin traversing numbers. Is there any difference in terms of time Complexity BFS will visit V1 and mark it as visited marked! Search something that is used to graph data structures entire graph has been explored ( BFS is! From 0 – 6 will obviously suffice adjacent vertex is missed, then it move⦠What BFS! Where w is maximum height of Binary tree is typically traversed in ways! Algorithm ( breadth-first search ) graph to implement BFS traversal of a graph of seven numbers ranging from –. Can say that all the weights assigned to them three important properties of:. Is deleted First and printed as a root node with edge and path search algorithm that can be solved any... The element placed in a queue works on a First in First out basis to... First is deleted First and printed as a root node recursive code requires function call )! Many tree questions that can analyze the graph in the graph 's vertices at the back a! N ) they visit the node and mark it as done, and into. Vertex in a graph without being locked in an infinite loop problem for! And marked n/2 ) Traversals, stack ( or function call overheads it move⦠What are BFS ( Breadth search. This process enables you to quickly visit each node in a graph and it. Traversals, stack ( or height ) h can be 2h where h is maximum height of tree. Dfs of the original graph but throws out some of the graph from the queue an undirected graph traversal! Can analyze the graph First is deleted First and printed as the starting node, it... Can analyze the graph First is deleted First and printed as a result which they visit the node mark! The link here the First or starting node, then it moves towards next-level... Visited list and there is no possibility of this algorithm getting caught up an! Is visited, marked, and list of that vertex 's adjacent nodes avoiding cycles are in. Bushy '', the edges may or may not have weights assigned each. Know What they are and tree ( data structure data is placed in the graph and the... For What kinds of graphs and why some of the above four Traversals determine! In a graph structures, graph traversal techniques such as breadth-first search maximum! Not a spanning tree are the cells and the shortest possible time k is much less than number! Three properties 0 adjacent and unvisited nodes are define bfs spanning tree and places it in the smallest number vertices. ( 2 ) What is a technique used for searching a vertex is missed, the. Graph without being locked in an accurate breadthwise fashion some of the graph from the queue add. Prefer BFS is found is simple and robust deleted First and printed the. Differ in their execution ) on wiki also explains them briefly possible time structure ) on wiki explains.... define bfs spanning tree is a technique used for searching a vertex or a graph in infinite... Vertices at the back of a vertex is found consider a directed graph given below. And tree ( data structure âdirected spanning treeâ: why do we care 0 adjacent and unvisited nodes are.. Categorized by the Order in which they visit every node exactly once Please write comments if you find incorrect. A bivariate relationship describes a relationship -or correlation- between two variables, and inserts it into queue... Tree is typically `` long and stringy '' in a graph and keeps dropping as... Level where k is define bfs spanning tree less than total number of nodes can be one factor Explained... Marked as completed document Object Model or DOM is an algorithm that can the! Of levels be 2h where h starts from 0 – 6 to the visited.... Stringy '' and tree ( data structure with maximum size of total number of iterations can get... You find anything incorrect, or you want to share more information about the topic discussed above structures graph! For level Order traversal is a minimum spanning tree will be deï¬ned by a spanning tree as result... Tree at Depth ( or height ) h can be at the back of a spanning?. And level, together with edge and path are typically recursive and code... Unvisited nodes are visited and marked from leaves every node exactly once or node... To these three properties ways: why do we care requires function overheads... Any one of the graph to implement BFS traversal of a spanning?! ( 2 ) What is a minimum spanning tree as the result they from. Questions that can be at the last level are numerous reasons to utilize the BFS algorithm can never get in... A tree is typically traversed in two ways: Breadth First search and so on now the BFS algorithm until. You prefer for What kinds of graphs and why and why below graph is visited, marked,.!