Skip to content

An implementation of topological sorting in D programming language

Notifications You must be signed in to change notification settings

tanitta/topological-sort-d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

topological-sort-d

Dub version Dub downloads License

Description

Perform topological sorting.

Usage

import topologicalsort;

auto verticesList = [[0, 1], [0, 2], [2, 3], [1, 3]];
auto result = verticesList.topologicalSort; // [0, 1, 2, 3]

About

An implementation of topological sorting in D programming language

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages