質問

「収益」 Pythonのステートメントは、プロシージャからの単純な反復を可能にします。また、シーケンスを事前に計算する必要がなく、「任意の」配列に格納する必要があることも意味します。サイズ。

Cプロシージャから(yieldを使用して)反復する同様の方法がありますか?

役に立ちましたか?

解決

ここに、「wiki」として選択できる自己回答のコミュニティウィキコピーがあります。回答。実際の自己回答にアップ/ダウン投票してください

ここに私が見つけた方法があります:

    /* Example calculates the sum of the prime factors of the first 32 Fibonacci numbers */
#include <stdio.h>

typedef enum{false=0, true=1}bool;

/* the following line is the only time I have ever required "auto" */
#define FOR(i,iterator) auto bool lambda(i); yield_init = (void *)&lambda; iterator; bool lambda(i)
#define DO {
#define     YIELD(x) if(!yield(x))return
#define     BREAK return false
#define     CONTINUE return true
#define OD CONTINUE; }
/* Warning: _Most_ FOR(,){ } loops _must_ have a CONTINUE as the last statement. 
 *  *   Otherwise the lambda will return random value from stack, and may terminate early */

typedef void iterator; /* hint at procedure purpose */
static volatile void *yield_init;
#define YIELDS(type) bool (*yield)(type) = yield_init

iterator fibonacci(int n){
   YIELDS(int);
   int i;
   int pair[2] = {0,1};
   YIELD(0); YIELD(1);
   for(i=2; i<n; i++){
      pair[i%2] = pair[0] + pair[1];
      YIELD(pair[i%2]);
   }
}

iterator factors(int n){
  YIELDS(int); 
  int i;
  for(i=2; i*i<=n; i++){
    while(n%i == 0 ){
      YIELD(i);
      n/=i;
    }
  }
  YIELD(n);
}

main(){
    FOR(int i, fibonacci(32)){
        printf("%d:", i);
        int sum = 0;
        FOR(int factor, factors(i)){
            sum += factor;
            printf(" %d",factor);
            CONTINUE;
        }
        printf(" - sum of factors: %d\n", sum);
        CONTINUE;
    }
}

http://rosettacode.org/wiki/Prime_decomposition#ALGOL_68 からアイデアを入手してください-しかし、Cの方が読みやすい

他のヒント

このURLを時々ジョークとして引き出します:コルーチンC で。

あなたの質問に対する正しい答えはこれだと思います:直接同等のものはなく、それを偽造しようとする試みは、おそらくそれほどきれいで使いやすいものではないでしょう。

いいえ。

すてきで短い!

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top