最近一年多来,一直比较忙,最近一段时间终于空闲了,把以前没写的都补上.....
这边随笔主要是计算一系列数据的间隔数据。从一堆数据中查询出每个区间的起始数据,结束数据以及数据个数,同时可以设置相应精度(小数位数)。
区间数据数据结构
1、区间数据主要包括当前区间的起始数据,结束数据以及数据个数。结构如下:
public struct IntervalData<TKey, TValue> { private TKey _startValue; private TKey _endValue; private TValue _count; public IntervalData(TKey startValue, TKey endValue, TValue count) { this._startValue = startValue; this._endValue = endValue; this._count = count; } public TKey StartValue { get { return this._startValue; } set { this._startValue = value; } } public TKey EndValue { get { return this._endValue; } set { this._endValue = value; } } public TValue Count { get { return this._count; } set { this._count = value; } } }
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索数据
, private
, 区间树
, 区间查找
, this
, count
, 计算题
, public
区间
,以便于您获取更多的相关知识。
时间: 2024-10-07 20:15:00