English 中文(简体)
Brute Force 运算法正确无误;否则有效
原标题:Brute Force Algorithm Won t Yield Correctly; Otherwise Works Fine

我试图找到一个写一个固定长度(目前)的粗力发电机的方法,我最好能像这样激活。

for i in FixedLength( abc , 3):
    print(i);

i 的价值不应该是一个生成器。 这就是我所拥有的:

import sys;
class FixedLength:  
    def __init__(self, charset, length, code_page=sys.getdefaultencoding())
        self.length=length;
        self.code_page=code_page;
        #basically
        self.charset=bytes(charset, code_page);
        self.retval=[charset[0]]*length;

    def __iter__(self):
        return self;

    def __next__(self):
        #problem line 1
        self.recurse(0);
        raise StopIteration;

    def recurse(self, recursion_level):
        if recursion_level==self.length-1:
            for char in self.charset:
                self.retval[recursion_level]=char;
                if self.validate():
                    #problem line 2
                    yield self.output();
        else:
            for char in self.charset:
                self.retval[recursion_level]=char;
                self.recurse(recursion_level+1);
    def validate(self):
        return True;
    def output(self):
        return bytes(self.retval).decode(self.code_page);

我知道它会打印出输出(来自问题行2)很好,但我无法让它产生相同的信息。 发送问题行1在发电机里装了一个发电机。 返回问题行1不会起作用, 因为它不会引起停止试运行错误。 但除此之外, 它似乎没有真正循环。 虽然它称自己为自我。 反复重复的循环水平将维持在 0 。

问题回答

您的 curse 是一个生成函数。 调用时, 它产生一个序列。 如果您的 next_ {/code> 想要返回序列的下一个值, 它必须从 < code> curse 获得下一个值 :

def __next__(self):
    next(self.recurse(0))

内置 next () 也提出 stopIteration 例外 。

然而,设计有点混乱。 它将生成器与您试图执行的类似操作混为一谈。 换句话说, 您正在将一个生成器包到另一个生成器中。 或者, 您正在反复执行循环器, 这很奇怪 。 或者我感到困惑。 目的是什么? 它可能会以更简单的方式实施 。





相关问题
Get webpage contents with Python?

I m using Python 3.1, if that helps. Anyways, I m trying to get the contents of this webpage. I Googled for a little bit and tried different things, but they didn t work. I m guessing that this ...

What is internal representation of string in Python 3.x

In Python 3.x, a string consists of items of Unicode ordinal. (See the quotation from the language reference below.) What is the internal representation of Unicode string? Is it UTF-16? The items ...

What does Python s builtin __build_class__ do?

In Python 3.1, there is a new builtin function I don t know in the builtins module: __build_class__(...) __build_class__(func, name, *bases, metaclass=None, **kwds) -> class Internal ...

what functional tools remain in Python 3k?

I have have read several entries regarding dropping several functional functions from future python, including map and reduce. What is the official policy regarding functional extensions? is lambda ...

Building executables for Python 3 and PyQt

I built a rather simple application in Python 3.1 using PyQt4. Being done, I want the application to be distributed to computers without either of those installed. I almost exclusively care about ...