Semi-dynamic rectangle intersection searching algorithm

Jingbo Gao,Xinyou Li,Zesheng Tang,Xiaohui Zhou
1997-01-01
Ruan Jian Xue Bao/Journal of Software
Abstract:This paper introduces a solution to dynamic rectangle intersection searching problem. There are two semi-dynamic algorithms which are based on 1-dimensional data structure and 2-dimensional data structure respectively. The computational complexity of 1-D searching algorithm is as follows: query time O (logM + k��), update time O(logMlogn), space O(nlogM). The computational complexity of 2-D searching algorithm is as follows: query time O(log2M+k), update time O(log2Mlogn), space O(nlog2M). The two algorithms are implemented respectively. With an experimental comparison, the authors found that 1-D searching algorithm is far better than 2-D searching algorithm.
What problem does this paper attempt to address?