Skip to content

Instantly share code, notes, and snippets.

@vitkarpov
Last active March 9, 2017 08:14
Show Gist options
  • Save vitkarpov/d11e5da646d30f609c24cde6437ddfbd to your computer and use it in GitHub Desktop.
Save vitkarpov/d11e5da646d30f609c24cde6437ddfbd to your computer and use it in GitHub Desktop.
Graph example
/**
* Представление графа в виде списка смежности:
* индексу соответствует родительскому элементу,
* а значению — массив с дочерними элементами.
*/
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