-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:MarcoBackman/RangeSearchAnalysis in…
…to main
- Loading branch information
Showing
1 changed file
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,24 @@ | ||
# RangeSearchAnalysis | ||
Algorithm of Analysis individual project #1 - Range searching algorithm | ||
# <p align="center"> RangeSearchAnalysis </p> | ||
## <p align="center"> Algorithm of Analysis individual project #1 - Range searching algorithm </p> | ||
|
||
|
||
This project is comprised of three major sections. | ||
|
||
### 1. Point Generator. | ||
* Generates arbiturary points in incremental order. | ||
* Matrix dimesion determined by users input. | ||
* Matrix starting from 100 * 2 ^ n, where n = 1, 2, 3, 4... (Each of the matrix length is identical) | ||
* Experimental number of points generated 600 * n, where n = 1, 2, 3, 4... | ||
* Each generated points are save in .dat file named like: "POINTS_*MATRIX LENGTH*_*NUMBER OF POINTS*.dat | ||
|
||
### 2. Data structures. | ||
* Sequential structure. | ||
* insert() | ||
* find() | ||
|
||
* KD-Tree Structure. | ||
* insert() | ||
* find() | ||
|
||
### 3. Result exportation. | ||
|