递归函数中的泛型参数:糟糕的习惯?

时间:2012-11-26 20:46:12

标签: python

我发现自己做了很多事。这个例子很简单,但实际上,有很多复杂的赋值来更新数据结构和不调用第二次递归的条件。

我正在使用网格数据。点,边和面存储在单独的字典中,“指针”(字母键)被大量使用。

import itertools

class Demo(object):
    def __init__(self):
        self.a = {}
        self.b = {}
        self.keygen = itertools.count()

    def add_to_b(self, val):
        new_key = next(self.keygen)
        self.b[new_key] = val
        return new_key

    def recur_method(self, arg, argisval=True):
        a_key = next(self.keygen)
        if argisval is True:
            # arg is a value
            b_key = self.add_to_b(arg)
            self.a[a_key] = b_key
            self.recur_method(b_key, argisval=False)
        else:
            # arg is a key
            self.a[a_key] = arg

demo = Demo()
demo.recur_method(2.2)

有更好的方法吗?没有将我的所有作业代码分解为七种不同的方法?我还应该担心这个吗?

1 个答案:

答案 0 :(得分:1)

尝试

def recur_method(self, key=None, val=None):
    if key is None and val is None:
       raise exception("You fail it")

如果None是有效输入,则使用保护值:

sentinel = object()
def recur_method(self, key=sentinel, val=sentinel):
    if key is sentinel and val is sentinel:
       raise exception("You fail it")