Answer the question
In order to leave comments, you need to log in
How to build a tree architecture?
I want to make a tree structure like in the screenshot.
How can you implement this in Java, in which direction to dig?
More details on the video: https://www.youtube.com/watch?v=V-IEc_-c_po&featur...
Answer the question
In order to leave comments, you need to log in
Elementary. Take the person class. Add parents. Ready.
You can, to simplify navigation, add List<Person> children
- for the list of children.
public class Person {
String name;
Date birthDate;
Date deathDate;
Sex sex;
String note;
Person mother;
Person father;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question