mirror of
https://github.com/unknwon/the-way-to-go_ZH_CN.git
synced 2025-08-12 01:08:53 +08:00
31 lines
706 B
Go
Executable File
31 lines
706 B
Go
Executable File
// min_interface.go
|
|
package min
|
|
|
|
type Miner interface {
|
|
Len() int
|
|
ElemIx(ix int) interface{}
|
|
Less(i, j int) bool
|
|
}
|
|
|
|
func Min(data Miner) interface{} {
|
|
j := 0
|
|
for i := 1; i < data.Len(); i++ {
|
|
if data.Less(i, j) {
|
|
j = i
|
|
}
|
|
}
|
|
return data.ElemIx(j)
|
|
}
|
|
|
|
type IntArray []int
|
|
|
|
func (p IntArray) Len() int { return len(p) }
|
|
func (p IntArray) ElemIx(ix int) interface{} { return p[ix] }
|
|
func (p IntArray) Less(i, j int) bool { return p[i] < p[j] }
|
|
|
|
type StringArray []string
|
|
|
|
func (p StringArray) Len() int { return len(p) }
|
|
func (p StringArray) ElemIx(ix int) interface{} { return p[ix] }
|
|
func (p StringArray) Less(i, j int) bool { return p[i] < p[j] }
|