introductionWe often encounter tree-like data structures, such as organizational hierarchies, provinces, cities, counties, or animal and plant classifications. The following is an example of a tree structure: In practical applications, it is common to store this information as the following structure, especially when there is a one-to-many parent/child node relationship: const data = [ { id: 56, parentId: 62 }, { id: 81, parentId: 80 }, { id: 74, parentId: null }, { id: 76, parentId: 80 }, { id: 63, parentId: 62 }, { id: 80, parentId: 86 }, { id: 87, parentId: 86 }, { id: 62, parentId: 74 }, { id: 86, parentId: 74 }, ]; So, how do we convert this object array format into a hierarchical tree format? In fact, using the characteristics of JavaScript object references, it is very simple to implement. It can be done in O(n) time without recursion. the term For the sake of convenience, let us first define a few terms. We call each element in the array (that is, each circle in the tree diagram) a "node". A node can be the "parent node" of multiple nodes, or the "child node" of a certain node. In the above figure, node 86 is the “parent node” of node 80 and node 87, and node 86 is the child node of node 74. The topmost node of the tree is called the "root node". IdeasTo construct the tree structure, we need:
We can see that references are stored in the object tree, which is why we can complete this task in O(n) time! Establish ID-array index mapping relationshipAlthough it is not required, this mapping relationship can help us quickly find the location of the element and facilitate finding the reference to the parent element. const idMapping = data.reduce((acc, el, i) => { acc[el.id] = i; return acc; }, {}); The mapping results are as follows, and you will see how useful it is later:
Constructing a tree structureNow we start constructing this tree structure. Iterate through the array of objects, find the parent object of each element, and then add a reference to the element. Now you should see how convenient this idMapping is for locating elements (constant time). let root; data.forEach(el => { // Determine the root node if (el.parentId === null) { root = el; return; } // Use the mapping table to find the parent element const parentEl = data[idMapping[el.parentId]]; // Add the current element to the `children` array of the parent element parentEl.children = [...(parentEl.children || []), el]; }); Done! Use console.log to print root and see: console.log(root);
principleWhy is this possible? This is because each element in the data array is a reference to an object in memory, the el variable in the forEach loop actually points to an object in memory, and parentEl also references an object. If an object in memory references a children array, these child elements can also reference their own child element arrays. These associations are all completed through references. SummarizeObject reference is one of the most fundamental concepts in JavaScript and requires more learning and understanding. Once you truly understand this concept, you can avoid tricky bugs and come up with relatively simple solutions to seemingly complex problems. The above is a brief discussion of the details of an efficient algorithm for constructing tree structures in JavaScript. For more information on JavaScript algorithms for constructing tree structures, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: Detailed installation tutorial of mysql-8.0.11-winx64.zip
>>: Solution to Linux CentOS 6.5 ifconfig cannot query IP
1. Briefly describe the traditional LRU linked li...
This article shares the installation and configur...
A Multi-Select is a UI element that lists all opt...
As shown below: XML/HTML CodeCopy content to clip...
Summarize 1. Similarities Both can change the int...
Problem: The partition where MySQL stores data fi...
First of all, the blogger is playing the communit...
Table of contents 1. What are options? 2. What at...
Preface After MySQL version 3.23.44, InnoDB engin...
Table of contents 1. Overview of Docker consul 2....
Table of contents Preface Laying the foundation p...
I have installed various images under virtual mac...
Written in front: Sometimes you may need to view ...
Preface Ordinary users define crontab scheduled t...
How to use the MySQL authorization command grant:...