Skip to content

Commit 532d80d

Browse files
committed
Merge branch 'release-0.2.0'
2 parents fb80a6c + 77674ff commit 532d80d

File tree

168 files changed

+13898
-1472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

168 files changed

+13898
-1472
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
src/btree
2-
src/kd_tree
32
src/orthtree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This library adopts the single include policy. To use it, download the [latest r
1414

1515
## Future Development
1616

17-
At the time of writing, the library contains only Binary trees. In future releases this library is expected to include Space Partitioning trees (namely KD-trees and Orthrees (n-analogue of quadtrees)) and B-trees.
17+
At the time of writing, the library contains Binary trees and Point k-d trees. In future releases this library is expected to include other Space Partitioning trees (namely Range k-d trees and Orthrees (n-analogue of quadtrees)) and B-trees.
1818

1919
## License
2020

docs/examples/binary_tree/map/array_subscript.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22

33
using intpair = std::pair<int, int>;
4-
std::ostream& operator<<(std::ostream& os, const intpair& i) {
4+
std::ostream &operator<< (std::ostream &os, const intpair &i) {
55
os << i.first << ',' << i.second; return os;
66
}
77

docs/examples/binary_tree/map/assign.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22

33
using intpair = std::pair<int, int>;
4-
std::ostream& operator<<(std::ostream& os, const intpair& i) {
4+
std::ostream &operator<< (std::ostream &os, const intpair &i) {
55
os << i.first << ',' << i.second; return os;
66
}
77

docs/examples/binary_tree/map/at.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22

33
using intpair = std::pair<int, int>;
4-
std::ostream& operator<<(std::ostream& os, const intpair& i) {
4+
std::ostream &operator<< (std::ostream &os, const intpair &i) {
55
os << i.first << ',' << i.second; return os;
66
}
77

docs/examples/binary_tree/map/capacity.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22

33
using intpair = std::pair<int, int>;
4-
std::ostream& operator<<(std::ostream& os, const intpair& i) {
4+
std::ostream &operator<< (std::ostream &os, const intpair &i) {
55
os << i.first << ',' << i.second; return os;
66
}
77

docs/examples/binary_tree/map/clear.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22

33
using intpair = std::pair<int, int>;
4-
std::ostream& operator<<(std::ostream& os, const intpair& i) {
4+
std::ostream &operator<< (std::ostream &os, const intpair &i) {
55
os << i.first << ',' << i.second; return os;
66
}
77

docs/examples/binary_tree/map/comparison.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22

33
using intpair = std::pair<int, int>;
4-
std::ostream& operator<<(std::ostream& os, const intpair& i) {
4+
std::ostream &operator<< (std::ostream &os, const intpair &i) {
55
os << i.first << ',' << i.second; return os;
66
}
77

docs/examples/binary_tree/map/constructor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22

33
using intpair = std::pair<int, int>;
4-
std::ostream& operator<<(std::ostream& os, const intpair& i) {
4+
std::ostream &operator<< (std::ostream &os, const intpair &i) {
55
os << i.first << ',' << i.second; return os;
66
}
77

docs/examples/binary_tree/map/contains.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <iostream>
22

33
using intpair = std::pair<int, int>;
4-
std::ostream& operator<<(std::ostream& os, const intpair& i) {
4+
std::ostream &operator<< (std::ostream &os, const intpair &i) {
55
os << i.first << ',' << i.second; return os;
66
}
77

0 commit comments

Comments
 (0)