Linear octree

{{short description|Data structure tree}}

{{More citations needed|date=May 2024}}

A linear octree is an octree that is represented by a linear array instead of a tree data structure.{{Cite book |last1=Phua |first1=Kang Hoh |url=https://books.google.com/books?id=jYNIDwAAQBAJ&dq=%22linear+octree%22&pg=PA164 |title=Singapore Supercomputing Conference '90: Supercomputing For Strategic Advantage |last2=Loe |first2=Kia Fock |date=1991-09-10 |publisher=World Scientific |isbn=978-981-4555-99-9 |pages=164 |language=en}}

To simplify implementation, a linear octree is usually complete (that is, every internal node has exactly 8 child nodes) and where the maximum permissible depth is fixed a priori (making it sufficient to store the complete list of leaf nodes). That is, all the nodes of the octree can be generated from the list of its leaf nodes. Space filling curves are often used to represent linear octrees.

References

{{Reflist}}

Category:Trees (data structures)

{{datastructure-stub}}