Next: Testing and measurements
Up: No Title
Previous: Implementation of insert algorithm
Let's expect specification:
- n ... number of initial bounding-boxes
- q ... number of tested objects (q >> n)
- complexity of test of intersection between tested object and
bounding-box = O(1)
Now we can look at particular methods for solution:
- successively
- time complexity:
- memory complexity:
- binary tree
- insert algorithm
- example of one another approach - only for comparison
Top-down method, dividing space by projection of bounding-boxes in axes.
- time complexity:
always
- memory complexity:
- advantages: unambiguous in searching, faster, better for very overlapping
bounding-boxes
- disadvantage: bigger consumption of memory
Next: Testing and measurements
Up: No Title
Previous: Implementation of insert algorithm
1999-04-11