如何将递归DFS转换为迭代DFS?

时间:2019-06-08 21:39:32

标签: c++ algorithm iteration depth-first-search

我想到了一种使用递归DFS解决子集问题(https://leetcode.com/problems/subsets/)的方法。但是我无法提出如何使用迭代DFS解决它。有人可以帮忙吗?

我的递归DFS解决方案:

from mitmproxy import http


def request(flow):
    if flow.request.pretty_url.endswith("example.com/index.php"):
        flow.response = http.HTTPResponse.make(
            200,
            "<html><body>hello world</body></html>",
            {"content-type":"text/html"},
        )

0 个答案:

没有答案