我有一个文件:
package main
import "fmt"
func
combinations(result chan []byte, len int, min byte, max byte) {
res := make([]byte,len)
for i := 0; i < len; i++ {
res[i] = min
}
result <- res
for true {
i := 0
for i = 0; i < len; i++ {
if res[i] < max {
res[i] = res[i] + 1;
break
} else {
res[i] = 32
}
}
result <- res
if(i == len) {
close(result)
return;
}
}
}
func
main() {
combination_chan := make(chan []byte)
go combinations(combination_chan, 2, 0, 5)
for next_combination := range combination_chan {
fmt.Printf("%x\n",next_combination)
}
}
我希望这会打印 0 到 5 之间 2 个字节的所有可能组合,即:
0000
0100
...
0001
...
0505
但是,它似乎跳过所有其他值,并打印两次相同的值,IE:
0100
0100
0300
0300
...
为什么会这样做?我在“result <- res”行之前插入了打印件,这些都是正确的。
拉风的咖菲猫
相关分类