English 中文(简体)
如何在 Progrolog 中进行修剪, 以防止子节点再次生成父节点
原标题:how to do pruning in prolog to prevent child node from generating it s parent node again
  • 时间:2012-05-24 13:18:52
  •  标签:
  • prolog

说我有一棵搜索树,我正试图找到一个目标的所有解决方案。如果我不把树切除到孩子仍被允许生成它的父母节点,那么搜索空间就会变得非常大。 所以,有人可以告诉我一个能这样做的前提,或者向我解释如何做到,因为我对Prolog非常陌生。

问题回答

最简单的方法可能是在你的“搜索”前端添加一个额外的论据,以跟踪已经访问过的节点(父母、子女等),加上一个条款,禁止访问以前的节点。

有些术语值得澄清。一棵树是一个没有周期(卢布)的图表,所以在“搜索树”中,你实际上没有重新检查两次节点的可能性。

也许您正在寻找某种通往目标的道路,而解决方案则是可能的路径。 所宣称的寻找“ 目标的所有解决方案” 的要求与排除那些不止一次重访节点的路径存在某种紧张。 但是,让我们假设限制不重访节点是允许的 。

如果您提供更多信息, 说明您如何编码您的搜索前端, 我就能具体地说明如何添加额外的“ 已访问过的列表” 参数 。





相关问题
Prolog : Learning by example

I am trying to learn a little bit about swi-prolog (beyond the basic, useless programs). Can anyone explain (perhaps in pseudocode) what this sudoku solver and the related functions are doing? If ...

Working with lists in Prolog

First off let me state that this is part of a class exercise given as homework. But, the entire assignment is much more involved than the subject of this question. So.. I am searching through two ...

SWI-Prolog conditional statements

I m trying to write a function that will test to see if the word hello is contained in a list. If it is contained, i don t want it to say "true", i want it to say : "yes, the word hello is contained ...

prolog cut off in method

I have a question I would like to ask you something about a code snippet: insert_pq(State, [], [State]) :- !. insert_pq(State, [H|Tail], [State, H|Tail]) :- precedes(State, H). insert_pq(State, [...

Max out of values defined by prolog clauses

I know how to iterate over lists in Prolog to find the maximum, but what if each thing is a separate clause? For example if I had a bunch of felines and their ages, how would I find the oldest kitty? ...

热门标签