1 Star 0 Fork 0

ZenQy/project_euler

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
024.go 800 Bytes
一键复制 编辑 原始数据 按行查看 历史
ZenQy 提交于 2016-12-28 23:07 . rename flie
package main
import (
"fmt"
"os"
)
const N int = 1e6
var count int = 0
func main() {
digits := []int{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}
sorts := make([]int, 0, len(digits))
permutation(sorts, digits)
}
// permutation count计数,初始值为0;n
func permutation(sorts, digits []int) {
lenOfDigits := len(digits)
if lenOfDigits == 1 {
count++
if count == N {
sorts = append(sorts, digits[0])
fmt.Println(sorts)
os.Exit(0)
}
}
for i := 0; i < lenOfDigits; i++ {
nextSorts := sorts
nextSorts = append(nextSorts, digits[i])
nextDigits := make([]int, lenOfDigits-1)
for j := 0; j < lenOfDigits; j++ {
if j < i {
nextDigits[j] = digits[j]
} else if j > i {
nextDigits[j-1] = digits[j]
}
}
if count < N {
permutation(nextSorts, nextDigits)
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/ApocalypseQin/project_euler.git
git@gitee.com:ApocalypseQin/project_euler.git
ApocalypseQin
project_euler
project_euler
master

搜索帮助