From 63f08ee5c68318f301290c9cfbd05234a10a50ec Mon Sep 17 00:00:00 2001 From: pavelkarpiy Date: Sat, 21 Jan 2017 02:49:08 +0300 Subject: [PATCH] Delete README.md --- README.md | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 README.md diff --git a/README.md b/README.md deleted file mode 100644 index a6c5adb..0000000 --- a/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# studentrepository - -This is my implementation of structure "quadtree" for college. - -A quadtree is a tree data structure in which each internal node has exactly four children. Quadtrees are the two-dimensional analog of octrees and are most often used to partition a two-dimensional space by recursively subdividing it into four quadrants or regions. The data associated with a leaf cell varies by application, but the leaf cell represents a "unit of interesting spatial information". - -All forms of quadtrees share some common features: - -1) They decompose space into adaptable cells -2) Each cell (or bucket) has a maximum capacity. When maximum capacity is reached, the bucket splits -3) The tree directory follows the spatial decomposition of the quadtree.