用Go的风格实现素数筛选

Posted 丹江流

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Go的风格实现素数筛选相关的知识,希望对你有一定的参考价值。

package main

import (
    "fmt"
    "time"
)

const End = 10000

func source(ch chan<- int) {
    for i := 2; i < End; i++ {
        ch <- i
    }
}

func validate(in <-chan int, out chan<- int, fix int) {
    for {
        select {
        case i := <-in:
            if i%fix != 0 {
                out <- i
            }
        case <-time.After(1 * time.Second):
            close(out)
            return
        }
    }
}

// 打印素数
func main() {

    // 逐个获取待检测的数据源
    ch := make(chan int)
    go source(ch)

    for {
        data, ok := <-ch
        if !ok {
            break
        }
        fmt.Println(data)
        out := make(chan int)
        go validate(ch, out, data)
        ch = out
    }
}

 参考:http://tonybai.com/2017/04/20/go-coding-in-go-way/ , 但他实现的没有关闭chan, 导致 fatal error: all goroutines are asleep - deadlock! ,本方法优化了这个BUG.

 

以上是关于用Go的风格实现素数筛选的主要内容,如果未能解决你的问题,请参考以下文章

c语言中用筛选法求素数

POJ 2773 Happy 2006#素数筛选+容斥原理+二分

HDU 2161 Primes (素数筛选法)

用筛选法求100之内的素数

筛选 Eratosthenes 素数高达一百万 c++

素数筛选--hdu1262