Skip to content

Instantly share code, notes, and snippets.

@ckpearson
ckpearson / TopologicalSort.cs
Created April 1, 2019 09:50 — forked from Sup3rc4l1fr4g1l1571c3xp14l1d0c10u5/TopologicalSort.cs
Topological Sorting (Kahn's algorithm) implemented in C#
using System;
using System.Collections.Generic;
using System.Linq;
namespace TopologicalSort {
static class Program {
static void Main() {
//
// digraph G {
// "7" -> "11"