dqnrk44682 2016-02-05 21:19
浏览 29
已采纳

递归函数在golang中创建数字组合

I'm trying to figure out this recursive function thing. I have a non-recursive demo that works but it uses static methods not recursive. The functions prints out all the combinations of the "number sets" from the "pool_size". If someone could, please help me make this function recursive that would be great.

package main

import (
    "fmt"
)

func combos_of1(pool_size int) {
    for i := 1; i < pool_size+1; i++ {
        fmt.Println(i)
    }
    fmt.Println("
")
}

func combos_of2(pool_size int) {
    for i := 1; i < pool_size+1; i++ {
        for j := i + 1; j < pool_size+1; j++ {
            fmt.Println(i, j)
        }
    }
    fmt.Println("
")
}

func combos_of3(pool_size int) {
    for i := 1; i < pool_size+1; i++ {
        for j := i + 1; j < pool_size+1; j++ {
            for k := j + 1; k < pool_size+1; k++ {
                fmt.Println(i, j, k)
            }
        }
    }
    fmt.Println("
")
}

func main() {
    combos_of1(10)
    combos_of2(10)
    combos_of3(10)
}
  • 写回答

1条回答 默认 最新

  • doupo2157 2016-02-05 22:25
    关注

    For example,

    package main
    
    import "fmt"
    
    func rCombinations(p int, n []int, c []int, ccc [][][]int) [][][]int {
        if len(n) == 0 || p <= 0 {
            return ccc
        }
        if len(ccc) == 0 {
            ccc = make([][][]int, p)
        }
        p--
        for i := range n {
            cc := make([]int, len(c)+1)
            copy(cc, c)
            cc[len(cc)-1] = n[i]
            ccc[len(cc)-1] = append(ccc[len(cc)-1], cc)
            ccc = rCombinations(p, n[i+1:], cc, ccc)
        }
        return ccc
    }
    
    func Combinations(p int, n []int) [][][]int {
        return rCombinations(p, n, nil, nil)
    }
    
    func main() {
        pools := 3
        numbers := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
        fmt.Println(pools, "pools", "for", "numbers", numbers)
        fmt.Println()
        nc := 0
        c := Combinations(pools, numbers)
        fmt.Println("pools:")
        d := " digit : "
        for i := range c {
            fmt.Println(i+1, d)
            d = " digits: "
            for j := range c[i] {
                nc++
                fmt.Println(c[i][j], " ")
            }
        }
        fmt.Println()
        fmt.Println(nc, "combinations")
    }
    

    Output:

    3 pools for numbers [1 2 3 4 5 6 7 8 9 10]
    
    pools:
    1  digit : 
    [1]  
    [2]  
    [3]  
    [4]  
    [5]  
    [6]  
    [7]  
    [8]  
    [9]  
    [10]  
    2  digits: 
    [1 2]  
    [1 3]  
    [1 4]  
    [1 5]  
    [1 6]  
    [1 7]  
    [1 8]  
    [1 9]  
    [1 10]  
    [2 3]  
    [2 4]  
    [2 5]  
    [2 6]  
    [2 7]  
    [2 8]  
    [2 9]  
    [2 10]  
    [3 4]  
    [3 5]  
    [3 6]  
    [3 7]  
    [3 8]  
    [3 9]  
    [3 10]  
    [4 5]  
    [4 6]  
    [4 7]  
    [4 8]  
    [4 9]  
    [4 10]  
    [5 6]  
    [5 7]  
    [5 8]  
    [5 9]  
    [5 10]  
    [6 7]  
    [6 8]  
    [6 9]  
    [6 10]  
    [7 8]  
    [7 9]  
    [7 10]  
    [8 9]  
    [8 10]  
    [9 10]  
    3  digits: 
    [1 2 3]  
    [1 2 4]  
    [1 2 5]  
    [1 2 6]  
    [1 2 7]  
    [1 2 8]  
    [1 2 9]  
    [1 2 10]  
    [1 3 4]  
    [1 3 5]  
    [1 3 6]  
    [1 3 7]  
    [1 3 8]  
    [1 3 9]  
    [1 3 10]  
    [1 4 5]  
    [1 4 6]  
    [1 4 7]  
    [1 4 8]  
    [1 4 9]  
    [1 4 10]  
    [1 5 6]  
    [1 5 7]  
    [1 5 8]  
    [1 5 9]  
    [1 5 10]  
    [1 6 7]  
    [1 6 8]  
    [1 6 9]  
    [1 6 10]  
    [1 7 8]  
    [1 7 9]  
    [1 7 10]  
    [1 8 9]  
    [1 8 10]  
    [1 9 10]  
    [2 3 4]  
    [2 3 5]  
    [2 3 6]  
    [2 3 7]  
    [2 3 8]  
    [2 3 9]  
    [2 3 10]  
    [2 4 5]  
    [2 4 6]  
    [2 4 7]  
    [2 4 8]  
    [2 4 9]  
    [2 4 10]  
    [2 5 6]  
    [2 5 7]  
    [2 5 8]  
    [2 5 9]  
    [2 5 10]  
    [2 6 7]  
    [2 6 8]  
    [2 6 9]  
    [2 6 10]  
    [2 7 8]  
    [2 7 9]  
    [2 7 10]  
    [2 8 9]  
    [2 8 10]  
    [2 9 10]  
    [3 4 5]  
    [3 4 6]  
    [3 4 7]  
    [3 4 8]  
    [3 4 9]  
    [3 4 10]  
    [3 5 6]  
    [3 5 7]  
    [3 5 8]  
    [3 5 9]  
    [3 5 10]  
    [3 6 7]  
    [3 6 8]  
    [3 6 9]  
    [3 6 10]  
    [3 7 8]  
    [3 7 9]  
    [3 7 10]  
    [3 8 9]  
    [3 8 10]  
    [3 9 10]  
    [4 5 6]  
    [4 5 7]  
    [4 5 8]  
    [4 5 9]  
    [4 5 10]  
    [4 6 7]  
    [4 6 8]  
    [4 6 9]  
    [4 6 10]  
    [4 7 8]  
    [4 7 9]  
    [4 7 10]  
    [4 8 9]  
    [4 8 10]  
    [4 9 10]  
    [5 6 7]  
    [5 6 8]  
    [5 6 9]  
    [5 6 10]  
    [5 7 8]  
    [5 7 9]  
    [5 7 10]  
    [5 8 9]  
    [5 8 10]  
    [5 9 10]  
    [6 7 8]  
    [6 7 9]  
    [6 7 10]  
    [6 8 9]  
    [6 8 10]  
    [6 9 10]  
    [7 8 9]  
    [7 8 10]  
    [7 9 10]  
    [8 9 10]  
    
    175 combinations
    

    The variation for a single pool is:

    package main
    
    import "fmt"
    
    func rPool(p int, n []int, c []int, cc [][]int) [][]int {
        if len(n) == 0 || p <= 0 {
            return cc
        }
        p--
        for i := range n {
            r := make([]int, len(c)+1)
            copy(r, c)
            r[len(r)-1] = n[i]
            if p == 0 {
                cc = append(cc, r)
            }
            cc = rPool(p, n[i+1:], r, cc)
        }
        return cc
    }
    
    func Pool(p int, n []int) [][]int {
        return rPool(p, n, nil, nil)
    }
    
    func main() {
        pool := 9
        numbers := []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
        p := Pool(pool, numbers)
        fmt.Println(pool, "digit pool", "for", "numbers", numbers)
        for i := range p {
            fmt.Println(p[i])
        }
    }
    

    Output:

    9 digit pool for numbers [1 2 3 4 5 6 7 8 9 10]
    [1 2 3 4 5 6 7 8 9]
    [1 2 3 4 5 6 7 8 10]
    [1 2 3 4 5 6 7 9 10]
    [1 2 3 4 5 6 8 9 10]
    [1 2 3 4 5 7 8 9 10]
    [1 2 3 4 6 7 8 9 10]
    [1 2 3 5 6 7 8 9 10]
    [1 2 4 5 6 7 8 9 10]
    [1 3 4 5 6 7 8 9 10]
    [2 3 4 5 6 7 8 9 10]
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python
  • ¥15 要给毕业设计添加扫码登录的功能!!有偿
  • ¥15 kafka 分区副本增加会导致消息丢失或者不可用吗?
  • ¥15 微信公众号自制会员卡没有收款渠道啊
  • ¥100 Jenkins自动化部署—悬赏100元
  • ¥15 关于#python#的问题:求帮写python代码
  • ¥20 MATLAB画图图形出现上下震荡的线条
  • ¥15 关于#windows#的问题:怎么用WIN 11系统的电脑 克隆WIN NT3.51-4.0系统的硬盘