* @param splitCnt the total interval will be split by this count.
* @param totalNum the total number.
*/
public FrequencyCheck(int splitCnt, int totalNum) {
super();
this.cyclic = new CyclicIntArray(splitCnt);
this.totalNum = totalNum;
this.currentNum = 0;
}