首页
网站开发
桌面应用
管理软件
微信开发
App开发
嵌入式软件
工具软件
数据采集与分析
其他
首页
>
> 详细
2D-Tree留学生讲解、辅导c/c++编程语言、讲解program程序设计 讲解留学生Processing|调试Matlab程序
项目预算:
开发周期:
发布时间:
要求地区:
Lab4: 2D-Tree
In this assignment, you will implement a special data structure called a 2D-Tree (short for “2-dimensional
tree”) that efficiently supports to search “what value in the container is X most similar to?”.
1. Story
At a high level, a kd-tree(short for “k-dimensional tree”) is a generalization of a binary search tree that
stores points in k-dimensional space. That is, you could use a kd-tree to store a collection of points in the
Cartesian plane, in three-dimensional space, etc. You could also use a kd-tree to store biometric data, for
example, by representing the data as an ordered tuple, perhaps (height, weight, blood pressure,
cholesterol). However, a kd-tree cannot be used to store collections of other data types, such as strings.
Also note that while it's possible to build a kd-tree to hold data of any dimension, all of the data stored in
a kd-tree must have the same dimension. That is, you can't store points in two-dimensional space in the
same kd-tree as points in four-dimensional space.
It's easiest to understand how a kd-tree works by seeing an example. Below is a kd-tree that stores points
in three-dimensional space:
Notice that in each level of the kd-tree, a certain component of each node has been bolded. If we zeroindex
the components (i.e. the first component is component zero, the second component is component
one, etc.), in level n of the tree, the (n % 3)-th component of each node is shown in bold. The reason that
these values are bolded is because each node acts like a binary search tree node that discriminates only
along the bolded component. For example, the first component of every node in the left subtree is less
than the first component of the root of the tree, while the first component of every node in the right subtree
has a first component at least as a large as the root node's. Similarly, consider the kd-tree's left subtree.
The root of this tree has the value (2, 3, 7), with the three in bold. If you look at all the nodes in its left
subtree, you'll notice that the second component has a value strictly less than three. Similarly, in the right
subtree the second component of each node is at least three. This trend continues throughout the tree.
Given how kd-trees store their data, we can efficiently query whether a given point is stored in a kd-tree
as follows. Given a point P, start at the root of the tree. If the root node is P, return the root node. If the
first component of P is strictly less than the first component of the root node, then look for P in the left
subtree, this time comparing the second component of P. Otherwise, then the first component of P is at
least as large as the first component of the root node, and we descend into the right subtree and next time
compare the second component of P. We continue this process, cycling through which component is
considered at each step, until we fall off the tree or find the node in question. Inserting into a kd-tree is
similarly analogous to inserting into a regular BST, except that each level only considers one part of the
point.
2. Lab Requirement
You should implement the TreeNode and BinaryDimonTree(2D-Tree) classes.
TreeNode is a class which is used to store the binary dimension data. You should provide the following
functions (at least):
1. int getX(): return x(the first value in the tree node);
2. int getY(): return y(the second value in the tree node);
BinaryDimonTree is a class for the Tree which supports the following functions (at least):
1. BinaryDimonTree(): the construct function of class BDT;
2. istream &operator>>(istream &in, BinaryDimonTree &tree): input a 2D-Tree and the rule is
given below;
3. TreeNode* find_nearest_node(int x, int y): search the 2D-Tree and find the point whose
distance is smallest to the Point(x, y), and output the result to the console;
p.s. the distance between Point(x1, y1) and Point(x2, y2) is equal to [(x1-x2)^2 + (y1-
y2)^2]^(1/2);
p.s. If there are two points that have the same distance to the Point(x, y), then you are supposed
to choose the point whose x is smaller. If their x’s are also the same, then choose the point
whose y is smaller;
4. ~BinaryDimonTree(): the deconstruct function which is used to reclaim all the data in the 2DTree,
and you should explain your implementation to us when your lab is examined.
You must implement the Tree completely by yourself. And the names of the classes and their functions
must be same with the above.
We have provided the main function and the test cases, you should just run the main.cpp and check if you
can pass through all the test cases.
3. Guidance
The algorithm to find the nearest node in the 2D-Tree:
Let the test point be (a0, a1).
Maintain a global best estimate of the nearest neighbor, called 'guess.'
Maintain a global value of the distance to that neighbor, called 'bestDist'
Set 'guess' to NULL.
Set 'bestDist' to infinity.
Starting at the root, execute the following procedure:
if curr == NULL
return
/*
* If the current location is better than the best known location,
* update the best known location.
*/
if distance(curr, guess) < bestDist
bestDist = distance(curr, guess)
guess = curr
/*
* Recursively search the half of the tree that contains the test point.
* i means the dimension index which is used to discriminate in the current
level,
* for example: the i = 0 when curr is the root
*/
if ai < curri
recursively search the left subtree on the next axis
else
recursively search the right subtree on the next axis
/*
* If the vertical distance between the points is smaller than the best
distance,
* look on the other side of the plane by examining the other subtree.
*/
if |curri – ai| < bestDist
recursively search the other subtree on the next axis
4. Test
Input & Output Format:
The test file is divided into two parts.
The first part is for constructing a 2D-tree.
The first line contains an integer M which represents the number of nodes in the tree.
Next, there are M lines following, each contains two integers divided by a space. The two integers at the
same line represent the values on two dimensions respectively for the corresponding node.
The second part contains the test cases for find_nearest_node method.
The first line contains an integer N which represents the number of test cases.
Next, there are M lines following, each contains four integers divided by spaces. In each line, the first two
integers represent the node to search and the other two integers are correct answer of the search.
The code for the second part has been already completed in main.cpp. Please refer to the rules and
construct your own 2D-tree.
Coding format:
1. Please add your own functions and variables in file Tree.h and do not change or delete those
functions with tag /* DO NOT CHANGE */. Do not include other headers or libraries.
2. Please write your code in Tree.cpp and do not include other headers or libraries.
3. Do not modify main.cpp
Submission:
1. Please compress your source code into a 7z file and rename it to lab4.7z.
2. Only Tree.h and Tree.cpp are supposed to be submitted.
3. Upload it to canvas
Hint:
1. 1000 <= M <= 5000, 30000 <= N <= 100000。
2. In real-world cases, search time is more important, so you are supposed to reduce the execution
time of find_nearest_node.
5. Example
Testcase 1:
In this case, M=7 and N=1. You can construct a 2D tree with 7 nodes like this:
We have only one testcase, that is to find the point whose distance is smallest to Point(3,6).
As both Point(3,5) and Point(3,7) have the same distance to Point(3,6), we choose
Point(3,5) as it has smaller y.
软件开发、广告设计客服
QQ:99515681
邮箱:99515681@qq.com
工作时间:8:00-23:00
微信:codinghelp
热点项目
更多
代写math 1151, autumn 2024 w...
2024-11-14
代做comp4336/9336 mobile dat...
2024-11-14
代做eesa01 lab 2: weather an...
2024-11-14
代写comp1521 - 24t3 assignme...
2024-11-14
代写nbs8020 - dissertation s...
2024-11-14
代做fin b377f technical anal...
2024-11-14
代做ceic6714 mini design pro...
2024-11-14
代做introduction to computer...
2024-11-14
代做cs 353, fall 2024 introd...
2024-11-14
代做phy254 problem set #3 fa...
2024-11-14
代写n1569 financial risk man...
2024-11-14
代写csci-ua.0202 lab 3: enco...
2024-11-14
代写econ2226: chinese econom...
2024-11-14
热点标签
mktg2509
csci 2600
38170
lng302
csse3010
phas3226
77938
arch1162
engn4536/engn6536
acx5903
comp151101
phl245
cse12
comp9312
stat3016/6016
phas0038
comp2140
6qqmb312
xjco3011
rest0005
ematm0051
5qqmn219
lubs5062m
eee8155
cege0100
eap033
artd1109
mat246
etc3430
ecmm462
mis102
inft6800
ddes9903
comp6521
comp9517
comp3331/9331
comp4337
comp6008
comp9414
bu.231.790.81
man00150m
csb352h
math1041
eengm4100
isys1002
08
6057cem
mktg3504
mthm036
mtrx1701
mth3241
eeee3086
cmp-7038b
cmp-7000a
ints4010
econ2151
infs5710
fins5516
fin3309
fins5510
gsoe9340
math2007
math2036
soee5010
mark3088
infs3605
elec9714
comp2271
ma214
comp2211
infs3604
600426
sit254
acct3091
bbt405
msin0116
com107/com113
mark5826
sit120
comp9021
eco2101
eeen40700
cs253
ece3114
ecmm447
chns3000
math377
itd102
comp9444
comp(2041|9044)
econ0060
econ7230
mgt001371
ecs-323
cs6250
mgdi60012
mdia2012
comm221001
comm5000
ma1008
engl642
econ241
com333
math367
mis201
nbs-7041x
meek16104
econ2003
comm1190
mbas902
comp-1027
dpst1091
comp7315
eppd1033
m06
ee3025
msci231
bb113/bbs1063
fc709
comp3425
comp9417
econ42915
cb9101
math1102e
chme0017
fc307
mkt60104
5522usst
litr1-uc6201.200
ee1102
cosc2803
math39512
omp9727
int2067/int5051
bsb151
mgt253
fc021
babs2202
mis2002s
phya21
18-213
cege0012
mdia1002
math38032
mech5125
07
cisc102
mgx3110
cs240
11175
fin3020s
eco3420
ictten622
comp9727
cpt111
de114102d
mgm320h5s
bafi1019
math21112
efim20036
mn-3503
fins5568
110.807
bcpm000028
info6030
bma0092
bcpm0054
math20212
ce335
cs365
cenv6141
ftec5580
math2010
ec3450
comm1170
ecmt1010
csci-ua.0480-003
econ12-200
ib3960
ectb60h3f
cs247—assignment
tk3163
ics3u
ib3j80
comp20008
comp9334
eppd1063
acct2343
cct109
isys1055/3412
math350-real
math2014
eec180
stat141b
econ2101
msinm014/msing014/msing014b
fit2004
comp643
bu1002
cm2030
联系我们
- QQ: 9951568
© 2021
www.rj363.com
软件定制开发网!