Added EulerianPath

This commit is contained in:
Unick Soft
2017-11-19 22:17:21 +03:00
parent 22ba44ecb5
commit d6d27397a4
5 changed files with 107 additions and 1 deletions

View File

@@ -108,4 +108,7 @@
$g_lang["recommend_algorithm"] = "Recommend algorithms";
$g_lang["what_algorithm_we_have"] = "Our service already supports these features: <a href=\"/en/wiki/Help/FindTheShortestPath\" target=\"_blank\" style=\"text-decoration: underline\">Find the shortest path using Dijkstra's algorithm</a>, <a href=\"/en/wiki/Help/AdjacencyMatrix\" target=\"_blank\" style=\"text-decoration: underline\">Adjacency matrix</a>, <a href=\"/en/wiki/Help/IncidenceMatrix\" target=\"_blank\" style=\"text-decoration: underline\">Incidence Matrix</a>.";
$g_lang["has_eulerian_path"] = "Graph has Eulerian path";
$g_lang["has_not_eulerian_path"] = "Graph has not Eulerian path";
?>

View File

@@ -112,5 +112,7 @@
$g_lang["what_algorithm_we_have"] = "Сервис уже поддерживает следущий функционал: <a href=\"/wiki/Справка/ПоискКратчайшегоПути\" target=\"_blank\" style=\"text-decoration: underline\">Поиск пути алгоритмом Дейкстры</a>, <a href=\"/wiki/Справка/МатрицаСмежности\" target=\"_blank\" style=\"text-decoration: underline\">матрицу смежности</a>, <a href=\"/wiki/Справка/МатрицаИнцидентности\" target=\"_blank\" style=\"text-decoration: underline\">матрицу инцидентности</a>.";
$g_lang["has_eulerian_path"] = "Граф содержит Эйлерову цепь";
$g_lang["has_not_eulerian_path"] = "Граф не содержит Эйлерову цепь";
?>