Question: Please in C language & show your result ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
Please in C language & show your result
Range Search kD Tree
The range search problem consists of a set of attributed records S to determine which records from S intersect with a given range.
For n points on a plane, report a set of points which are within in a given range. Note that you do not need to consider insert and delete operations for the set.
Input
n
x y
x y
:
xn yn
q
sx tx sy ty
sx tx sy ty
:
sxq txq syq tyq
The first integer n is the number of points. In the following n lines, the coordinate of the ith point is given by two integers xi and yi
The next integer q is the number of queries. In the following q lines, each query is given by four integers, sxi, txi, syi, tyi.
Output
For each query, report IDs of points such that sxi x txi and syi y tyi. The IDs should be reported in ascending order. Print an ID in a line, and print a blank line at the end of output for the each query.
Constraints
n
q
x y sx tx sy ty
sx tx
sy ty
For each query, the number of points which are within the range is less than or equal to
Sample Input
Sample Output
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
