Last active
March 9, 2017 08:14
-
-
Save vitkarpov/d11e5da646d30f609c24cde6437ddfbd to your computer and use it in GitHub Desktop.
Graph example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Представление графа в виде списка смежности: | |
* индексу соответствует родительскому элементу, | |
* а значению — массив с дочерними элементами. | |
*/ | |
const graph = [ | |
null, | |
null, | |
null, | |
[8,10], | |
null, | |
[11], | |
null, | |
[11,8], | |
[9], | |
null, | |
null, | |
[2,9] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment