Definition
A tree is a data structure consisting of a set of linked nodes that represent a hierarchical tree structure. Each node is linked to others via parent-children relationship. The first node in the tree is the root, whereas nodes without any children are the leaves.
Each node in a tree data structure must have the following properties:
key
: The key of the nodevalue
: The value of the nodeparent
: The parent of the node (null
if there is none)children
: An array of pointers to the node’s children
The main operations of a tree data structure are:
insert
: Inserts a node as a child of the given parent noderemove
: Removes a node and its children from the treefind
: Retrieves a given nodepreOrderTraversal
: Traverses the tree by recursively traversing each node followed by its childrenpostOrderTraversal
: Traverses the tree by recursively traversing each node’s children followed by the node
Implementation
代码实现
class TreeNode {
constructor(key, value = key, parent = null) {
this.key = key;
this.value = value;
this.parent = parent;
this.children = [];
}
get isLeaf() {
return this.children.length === 0;
}
get hasChildren() {
return !this.isLeaf;
}
}
class Tree {
constructor(key, value = key) {
this.root = new TreeNode(key, value);
}
*preOrderTraversal(node = this.root) {
yield node;
if (node.children.length) {
for (let child of node.children) {
yield* this.preOrderTraversal(child);
}
}
}
*postOrderTraversal(node = this.root) {
if (node.children.length) {
for (let child of node.children) {
yield* this.postOrderTraversal(child);
}
}
yield node;
}
insert(parentNodeKey, key, value = key) {
for (let node of this.preOrderTraversal()) {
if (node.key === parentNodeKey) {
node.children.push(new TreeNode(key, value, node));
return true;
}
}
return false;
}
remove(key) {
for (let node of this.preOrderTraversal()) {
const filtered = node.children.filter(c => c.key !== key);
if (filtered.length !== node.children.length) {
node.children = filtered;
return true;
}
}
return false;
}
find(key) {
for (let node of this.preOrderTraversal()) {
if (node.key === key) return node;
}
return undefined;
}
}
- Create a
class
for theTreeNode
with aconstructor
that initializes the appropriatekey
,value
,parent
andchildren
properties. - Define an
isLeaf
getter, that usesArray.prototype.length
to check ifchildren
is empty. - Define a
hasChildren
getter, that is the reverse of theisLeaf
getter. - Create a
class
for theTree
with aconstructor
that initializes theroot
of the tree. - Define a
preOrderTraversal()
generator method that traverses the tree in pre-order, using theyield*
syntax to recursively delegate traversal to itself. - Define a
postOrderTraversal()
generator method that traverses the tree in post-order, using theyield*
syntax to recursively delegate traversal to itself. - Define an
insert()
method, that uses thepreOrderTraversal()
method andArray.prototype.push()
to add a newTreeNode
to the tree. - Define a
remove()
method, that uses thepreOrderTraversal()
method andArray.prototype.filter()
to remove aTreeNode
from the tree. - Define a
find()
method, that uses thepreOrderTraversal()
method to retrieve the given node in the tree.
使用样例
const tree = new Tree(1, 'AB');
tree.insert(1, 11, 'AC');
tree.insert(1, 12, 'BC');
tree.insert(12, 121, 'BG');
[...tree.preOrderTraversal()].map(x => x.value);
// ['AB', 'AC', 'BC', 'BCG']
tree.root.value; // 'AB'
tree.root.hasChildren; // true
tree.find(12).isLeaf; // false
tree.find(121).isLeaf; // true
tree.find(121).parent.value; // 'BC'
tree.remove(12);
[...tree.postOrderTraversal()].map(x => x.value);
// ['AC', 'AB']
翻译自:https://www.30secondsofcode.org/js/s/data-structures-tree