Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

create tree_detour_js #6

Merged
merged 1 commit into from
Jul 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions javascript/tree_detour.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
const { getTree } = require("./utils");

/**
* @description - Простейший алгоритм обхода дерево в двух форматах рекурсия и итеративная. Сложность такого алгоритм O(n)
* Работа строится таким образом, чтобы найти каждый элемент child некоторого value и найти value этого child.
* @param {Array} tree
*
* @description iteration - Для реализации итеративного подхода используется структура данных "стек" - представляющая из себя упорядоченный набор элементов,
* в которой добавление новых элементов и удаление существующих производится с одного конца, называемого вершиной стека.
*
* В нашем случае функция getTree вернет структуру дерева с бесконечным количеством узлов(node), в коде используется как bit (частица) структуры.
*/

const iteration = (tree) => {
if (!tree.length) {
return 0
}
let sum = 0
let stack = []
tree.forEach(bit => stack.push(bit));
while (stack.length) {
const bit = stack.pop()
sum += bit.value
if (bit.child) {
bit.child.forEach(child => stack.push(child))
}
}
return sum
}

const recursive = (tree) => {
let sum = 0;
tree.forEach(bit => {
sum += bit.value
if (!bit.child) {
return bit.value
}
sum += recursive(bit.child)
})
return sum
}

console.log(recursive(getTree()))
console.log(iteration(getTree()))
82 changes: 82 additions & 0 deletions javascript/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,86 @@ module.exports.getGraphDijkstra = () => {
[6, MAX_INTEGER, MAX_INTEGER, 1, MIN_INTEGER]
]
}
}

module.exports.getTree = () => {
return [
{
value: 13,
child: [
{
value: 7,
child: [
{
value: 35,
}
]
},
{
value: 31,
child: [
{
value: 8,
child: [
{
value: 646,
child: [
{
value: 13
},
{
value: 55
}
]
}
]
}
]
}
]
},
{
value: 13,
child: [
{
value: 13,
child: [
{
value: 13,
child: [
{
value: 13
},
{
value: 55,
child: [
{
value: 13
},
{
value: 55,
child: [
{
value: 13
},
{
value: 55
}
]
}
]
}
]
},
{
value: 55
}
]
},
{
value: 55
}
]
}
]
}