Add longest path algorithm.

This commit is contained in:
Oleg Sh
2022-03-20 19:59:40 +02:00
parent 79e5be1f66
commit 1d21cc3727
15 changed files with 291 additions and 0 deletions

View File

@@ -186,6 +186,9 @@ var g_pathTo = "Path to ";
var g_useContextMenuText = "Use context menu for addition actions."
var g_findLongestPath = "Find the longest path";
var g_LengthOfLongestPathFrom = "Length of the longest path from ";
function loadTexts()
{
g_textsSelectAndMove = document.getElementById("SelectAndMoveObject").innerHTML;
@@ -379,4 +382,7 @@ function loadTexts()
g_pathTo = document.getElementById("pathTo").innerHTML;
g_useContextMenuText = document.getElementById("UseContextMenuText").innerHTML;
g_findLongestPath = document.getElementById("findLongestPath").innerHTML;
g_LengthOfLongestPathFrom = document.getElementById("LengthOfLongestPathFrom").innerHTML;
}