ALGORITHM FOR OPTIMUM ARRANGEMENT OF GRAPHIC

Asked 2 years ago, Updated 2 years ago, 43 views

I'm trying to create a mind map.

I'm thinking of placing it according to the following rules.
·Each element is rectangular
·One root element
·The child elements immediately below are arranged in a row horizontally so that they hang under the parent element
·Parent elements are placed in the center of the child elements directly below the row

How can I place it as compactly as possible while satisfying these conditions?
Are there any good algorithms?

algorithm

2022-09-30 16:34

1 Answers

I've looked for it myself before, and I've referenced a JavaScript library called d3-hierarchy.

README has several references.

The algorithmic documentation for deployment is

For information on algorithms for linear time placement, see

It says that you refer to .You can also see the actual implementation in the GitHub repository, so it may be helpful for basic algorithms.


2022-09-30 16:34

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.