Package com.facebook.stats.topk

Examples of com.facebook.stats.topk.TreeBasedTopK


public class TestTreeBasedTopK extends TestIntegerTopK {
  private static final Logger LOG = LoggerImpl.getLogger(TestTreeBasedTopK.class);

  protected TopK<Integer> getInstance(int keySpaceSize, int k) {
    return new TreeBasedTopK(k);
  }
View Full Code Here


public class TestTreeBasedTopK extends TestIntegerTopK {
  private static final Logger LOG = LoggerFactory.getLogger(TestTreeBasedTopK.class);

  protected TopK<Integer> getInstance(int keySpaceSize, int k) {
    return new TreeBasedTopK(k);
  }
View Full Code Here

TOP

Related Classes of com.facebook.stats.topk.TreeBasedTopK

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.