um / code / shrink_cpp.h
shrink_cpp.h
Raw
#ifndef _shrink_cpp
#define _shrink_cpp

#include <vector>
#include <algorithm>
#include <iostream>
#include <iterator>
#include <string>
#include <list>
#include <numeric>

std::vector<std::vector<int> > partition(std::vector<std::vector<float> > keys, std::vector<int> nss, std::vector<std::vector<int> > cnts);

#endif