aboutsummaryrefslogblamecommitdiffstats
path: root/_test/meowpp.cpp
blob: e03edaa409c2fbaf070f8816789f2fb489aaeac3 (plain) (tree)
1
2
3
4
5
6
7
8
9
                        

                  





                         
 






                                                                  
  











                                                        

           
#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",
                 "<number>", "",
                 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;
}