#include "dsa/KD_Tree.h" #include "Usage.h" bool testColors(){ } bool testDisjointSet(){ } bool testMergeableHeap(){ } int main(int argc, char** argv){ Usage usg("meowpp"), usg2; usg .addOption('h', "Display this help document"); usg2.addOption('t', "Test the i-th part of the meowpp and then quit", "", "", false); KD_Tree(); KD_Tree(size_t _dimension); ~KD_Tree(); // void insert(Keys const& key, Value value); void build(); // Value query (Keys const& point, int k) const; Values rangeQuery(Keys const& point, int k) const; // void clear(); void reset(size_t _dimension); return 0; }