代码拉取完成,页面将自动刷新
package pandas
import "gitee.com/quant1x/num"
func (this vector[T]) Len() int {
return len(this)
}
// Less 实现sort.Interface接口的比较元素方法
func (this vector[T]) Less(i, j int) bool {
type_ := this.Type()
if type_ == SERIES_TYPE_BOOL {
values := this.Values().([]bool)
var (
a = int(0)
b = int(0)
)
if values[i] {
a = 1
}
if values[j] {
b = 1
}
return a < b
} else if type_ == SERIES_TYPE_INT64 {
values := this.Values().([]int64)
return values[i] < values[j]
} else if type_ == SERIES_TYPE_FLOAT32 {
values := this.Values().([]float32)
return values[i] < values[j]
} else if type_ == SERIES_TYPE_FLOAT64 {
values := this.Values().([]float64)
return values[i] < values[j]
} else if type_ == SERIES_TYPE_STRING {
values := this.Values().([]string)
return values[i] < values[j]
} else {
// SERIES_TYPE_INVAILD
// 应该到不了这里, Len()会返回0
panic(num.ErrUnsupportedType)
}
return false
}
// Swap 实现sort.Interface接口的交换元素方法
func (this vector[T]) Swap(i, j int) {
type_ := this.Type()
if type_ == SERIES_TYPE_BOOL {
values := this.Values().([]bool)
values[i], values[j] = values[j], values[i]
} else if type_ == SERIES_TYPE_INT64 {
values := this.Values().([]int64)
values[i], values[j] = values[j], values[i]
} else if type_ == SERIES_TYPE_FLOAT32 {
values := this.Values().([]float32)
values[i], values[j] = values[j], values[i]
} else if type_ == SERIES_TYPE_FLOAT64 {
values := this.Values().([]float64)
values[i], values[j] = values[j], values[i]
} else if type_ == SERIES_TYPE_STRING {
values := this.Values().([]string)
values[i], values[j] = values[j], values[i]
} else {
// SERIES_TYPE_INVAILD
// 应该到不了这里, Len()会返回0
panic(num.ErrUnsupportedType)
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。