Simple Single Pass Doubly Linked Flat Tree Building Algorithm
- Comments:
- 0
- Tags:
- Data Structure
- Algorithm
A hierarchy is a common structure, especially for structuring pages in web development. A problem with hierarchies is they often need to be flattened to be stored in a relational database, and then expanded again after being pulled out.
An Example Hierarchy
Top level item
Sub Item
Sub Sub Item…
Read More / Comment »