Yahoo India Web Search

Search results

  1. Mar 7, 2024 · Kahns Algorithm for Topological Sorting is a method used to order the vertices of a directed graph in a linear order such that for every directed edge from vertex A to vertex B, A comes before B in the order. The algorithm works by repeatedly finding vertices with no incoming edges, removing them from the graph, and updating the incoming edges of the remaining vertices.

  2. Learn for free about math, art, computer programming, economics, physics, chemistry, biology, medicine, finance, history, and more. Khan Academy is a nonprofit with the mission of providing a free, world-class education for anyone, anywhere.

  3. Kahn's Algorithm is a classical algorithm in computer science that is used for topological sorting of directed acyclic graphs (DAGs). Topological sorting is the process of arranging the nodes of a DAG in a linear order such that for every directed edge (u, v) (u,v), u comes before v in the order. In other words, a topological sort of a DAG is ...

  4. en.wikipedia.org › wiki › Khan_AcademyKhan Academy - Wikipedia

    Khan Academy is an American non-profit [3] educational organization created in 2006 by Sal Khan. [1] Its goal is to create a set of online tools that help educate students. [4] The organization produces short video lessons. [5] Its website also includes supplementary practice exercises and materials for educators.

  5. Sep 14, 2022 · Kahn’s topological sort algorithm works by finding vertices with no incoming edges and removing all outgoing edges from these vertices. Following is a pseudocode for Kahn’s topological sort algorithm taken from Wikipedia: Kahns–Algorithm (graph) L —> An empty list that will contain the sorted elements. S —> A set of all vertices ...

  6. Shah Rukh Khan. Shah Rukh Khan ( pronounced [ˈʃɑːɦɾʊx xɑːn] ⓘ; born 2 November 1965), also known by the initialism SRK, is an Indian actor and film producer who works in Hindi cinema. Referred to in the media as the " Baadshah of Bollywood" and "King Khan", [a] he has appeared in more than 100 films, and earned numerous accolades ...

  7. People also ask

  8. Mar 27, 2024 · Kahn's algorithm is a topological sorting algorithm that sorts a directed acyclic graph (DAG) in linear time. This article explains the algorithm in detail, with examples and a pseudocode implementation.