File: Histogram.h

package info (click to toggle)
snap-aligner 2.0.3%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 6,652 kB
  • sloc: cpp: 41,051; ansic: 5,239; python: 227; makefile: 85; sh: 28
file content (55 lines) | stat: -rw-r--r-- 985 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*++

Module Name:

    Histogram.h

Abstract:

    Header for cheezy histogram class

Authors:

    Bill Bolosky, September, 2011

Environment:

    User mode service.

    This class is NOT thread safe.  It's the caller's responsibility to ensure that
    at most one thread uses an instance at any time.

Revision History:

--*/

#pragma once

class Histogram {
public:
    Histogram(unsigned i_nBuckets, bool i_isExponential);

    ~Histogram();

    unsigned getNBuckets() const {return nBuckets;}
    bool getIsExponential() const {return isExponential;}
    unsigned getBucketCount(unsigned whichBucket) const;
    unsigned getBucketMax(unsigned whichBucket) const;
    unsigned getBucketMin(unsigned whichBucket) const;

    void print() const;

    void addToCount(unsigned value, unsigned amountToAdd = 1);

private:

    unsigned nBuckets;
    bool isExponential;

    struct Bucket {
        unsigned    maxValue;
        unsigned    count;
    };

    Bucket *buckets;
};