Browse Wiki & Semantic Web

Jump to: navigation, search
Http://dbpedia.org/resource/Bidirectional search
  This page has no properties.
hide properties that link here 
  No properties link to this page.
 
http://dbpedia.org/resource/Bidirectional_search
http://dbpedia.org/ontology/abstract Двонапра́влений по́шук — ускладнений алгорДвонапра́влений по́шук — ускладнений алгоритм пошуку ушир або пошуку углиб, в основі якого лежить така ідея, що можна одночасно проводити два пошуки (в прямому напрямку, від початкового стану, та у зворотному напрямку, від цілі), зупиняючись після того, як два процеси пошуку зустрінуться на середині (Рис. 1). пошуку зустрінуться на середині (Рис. 1). , 双向搜索算法是一种图的遍历算法,用于在中搜索从一个顶点到另一个顶点的最短路径。算法同双向搜索算法是一种图的遍历算法,用于在中搜索从一个顶点到另一个顶点的最短路径。算法同时运行两个搜索:一个从初始状态正向搜索,另一个从目标状态反向搜索,当两者在中间汇合时搜索停止。在很多情况下该算法更快,假设搜索一棵分支因子b的树,初始节点到目标节点的距离为d,该算法的正向和反向搜索复杂度都是O(bd/2) (大O符号),两者相加后远远小于普通的单项搜索算法(复杂度为O(bd))。 在A*搜尋演算法中,双向搜索的可以定义为:正向搜索为到目标节点的距离,反向搜索为到初始节点的距离。 Ira Pohl ()第一个设计并实现了双向启发式搜索算法。Andrew Goldberg和其他人解释了双向搜索版的戴克斯特拉算法的正确完结条件。ndrew Goldberg和其他人解释了双向搜索版的戴克斯特拉算法的正确完结条件。 , Bidirectional search is a graph search algBidirectional search is a graph search algorithm that finds a shortest path from an initial vertex to a goal vertex in a directed graph. It runs two simultaneous searches: one forward from the initial state, and one backward from the goal, stopping when the two meet. The reason for this approach is that in many cases it is faster: for instance, in a simplified model of search problem complexity in which both searches expand a tree with branching factor b, and the distance from start to goal is d, each of the two searches has complexity O(bd/2) (in Big O notation), and the sum of these two search times is much less than the O(bd) complexity that would result from a single search from the beginning to the goal. Andrew Goldberg and others explained the correct termination conditions for the bidirectional version of Dijkstra’s Algorithm. As in A* search, bi-directional search can be guided by a heuristic estimate of the remaining distance to the goal (in the forward tree) or from the start (in the backward tree). Ira Pohl was the first one to design and implement a bi-directional heuristic search algorithm. Search trees emanating from the start and goal nodes failed to meet in the middle of the solution space. The BHFFA algorithm fixed this defect Champeaux (1977). A solution found by the uni-directional A* algorithm using an admissible heuristic has a shortest path length; the same property holds for the BHFFA2 bidirectional heuristic version described in de Champeaux (1983). BHFFA2 has, among others, more careful termination conditions than BHFFA.careful termination conditions than BHFFA. , 双方向探索(英: bidirectional search)とは、グラフ探索アルゴリ双方向探索(英: bidirectional search)とは、グラフ探索アルゴリズムの一種で、同時に2つの方向から探索を行う。一方は初期状態から順方向に探索し、もう一方は最終状態から逆方向に探索して、その中間でぶつかった時点で終了する。それぞれの探索の計算量は (ランダウの記号)であり、両方を合わせても となり、一方向から全部の探索を行った場合の よりも効率がよい。 しかし、よいことばかりではない。並列に2つの探索を行う複雑さは別として、探索木をどう拡張していくかを各ステップで決定する必要がある。また、最終状態から逆方向に探索できる状況は限られているし、事前に用意が必要になる場合もある。また、2つの探索木の交差を見つける効率的方法も必要になる。このような問題があるため、うまいヒューリスティックがあるならA*の方がよい選択となることが多い。 双方向探索でもヒューリスティックを使うことができる。A*について証明されているように、許容的ヒューリスティックによって最短解が得られる場合がある。 拡張されるノードは、オープンなノード数が最も少なく最も見込みがある最先端から選ばれる。そのようなノードがもう一方の最先端にもある時に、アルゴリズムは終了する。子ノードのf値の計算に当たっては、もう一方の最先端の全てのオープンなノードのg値を考慮しなければならない。そのため、ノードの拡張はA*よりも計算量が多くなる。訪れるノードの数は上で概説したように少なくなることが期待できる。従って、個々の計算量が多くても調べるノード数が少なくなる。参考文献に示した1977年の文献では、A*では解けなかった問題を双方向探索で解いた例が示されている。許容的でないヒューリスティックを使った場合でもより短い経路が見つかっている。これらの検証は Ira Pohl が15パズルで行った。 Ira Pohl は、世界で初めて双方向ヒューリスティック探索アルゴリズムを設計・実装した。最先端の子ノードは、もう一方の側のターゲットについてだけ評価していた。彼の報告によれば、2つの探索木は相手と交差したことを検出できなかったという。ていた。彼の報告によれば、2つの探索木は相手と交差したことを検出できなかったという。 , Двунаправленный поиск пути в ширину (или глубину) — усложнённый алгоритм поиска в ширину (или глубину), идея которого заключается в формировании процесса поиска от начальной (прямой поиск) и от конечной вершины (обратный поиск) графа. , In der Informatik zählt die BidirektionaleIn der Informatik zählt die Bidirektionale Suche zu den Suchverfahren, spezieller zu den uninformierten Suchverfahren. Wie der A*-Algorithmus und der Dijkstra-Algorithmus ermittelt ein solches Verfahren den Teil eines Graphen der bestimmte Eigenschaften, wie kürzester Weg zwischen zwei gegebenen Knoten (Kürzester Pfad) aufweist. Bei diesem Lösungsverfahren werden zwei Suchen simultan gestartet, jeweils eine an den beiden gegebenen Knoten. Die Suchvorgänge sind gegensätzlich gerichtet, das Verfahren ist abgeschlossen, wenn sich die zwei Teilgraphen kreuzen. Der bidirektionalen Suche liegt der Wunsch nach Verringerung der Komplexität zu Grunde. Dem steht ein erhöhter Aufwand durch die Prüfung auf Aufeinandertreffen der Teilgraphen gegenüber, auch kann das Rückwärts laufen lassen der zweiten Suche die Realisierung erschweren. Und zur Erzielung einer Zeitersparnis müssen die beiden Vorgänge parallel implementiert werden. Daher ist das bidirektionale Verfahren nur selten und unter bestimmten Bedingungen wie dem Fehlen einer geeigneten Heuristik dem A*-Algorithmus vorzuziehen. Heuristik dem A*-Algorithmus vorzuziehen.
http://dbpedia.org/ontology/wikiPageID 3157516
http://dbpedia.org/ontology/wikiPageLength 8186
http://dbpedia.org/ontology/wikiPageRevisionID 1029918810
http://dbpedia.org/ontology/wikiPageWikiLink http://dbpedia.org/resource/State_space_search + , http://dbpedia.org/resource/BHFFA + , http://dbpedia.org/resource/Dijkstra%E2%80%99s_Algorithm + , http://dbpedia.org/resource/Graph_search_algorithm + , http://dbpedia.org/resource/Branching_factor + , http://dbpedia.org/resource/Shortest_path + , http://dbpedia.org/resource/Big_O_notation + , http://dbpedia.org/resource/Andrew_V._Goldberg + , http://dbpedia.org/resource/Fifteen_puzzle + , http://dbpedia.org/resource/Category:Graph_algorithms + , http://dbpedia.org/resource/Heuristic_%28computer_science%29 + , http://dbpedia.org/resource/Journal_of_the_ACM + , http://dbpedia.org/resource/Bidirectional_Heuristic_Front-to-Front_Algorithm + , http://dbpedia.org/resource/Directed_graph + , http://dbpedia.org/resource/A%2A_search_algorithm + , http://dbpedia.org/resource/Artificial_Intelligence:_A_Modern_Approach + , http://dbpedia.org/resource/Vertex_%28graph_theory%29 + , http://dbpedia.org/resource/Tree_%28graph_theory%29 + , http://dbpedia.org/resource/Category:Search_algorithms +
http://dbpedia.org/property/wikiPageUsesTemplate http://dbpedia.org/resource/Template:Graph_search_algorithm + , http://dbpedia.org/resource/Template:Reflist + , http://dbpedia.org/resource/Template:Mvar + , http://dbpedia.org/resource/Template:Math + , http://dbpedia.org/resource/Template:Harvs + , http://dbpedia.org/resource/Template:Citation +
http://purl.org/dc/terms/subject http://dbpedia.org/resource/Category:Graph_algorithms + , http://dbpedia.org/resource/Category:Search_algorithms +
http://purl.org/linguistics/gold/hypernym http://dbpedia.org/resource/Algorithm +
http://www.w3.org/ns/prov#wasDerivedFrom http://en.wikipedia.org/wiki/Bidirectional_search?oldid=1029918810&ns=0 +
http://xmlns.com/foaf/0.1/isPrimaryTopicOf http://en.wikipedia.org/wiki/Bidirectional_search +
owl:sameAs http://hu.dbpedia.org/resource/K%C3%A9tir%C3%A1ny%C3%BA_keres%C3%A9s + , http://ru.dbpedia.org/resource/%D0%94%D0%B2%D1%83%D0%BD%D0%B0%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%BD%D1%8B%D0%B9_%D0%BF%D0%BE%D0%B8%D1%81%D0%BA + , http://ja.dbpedia.org/resource/%E5%8F%8C%E6%96%B9%E5%90%91%E6%8E%A2%E7%B4%A2 + , http://th.dbpedia.org/resource/%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%84%E0%B9%89%E0%B8%99%E0%B8%AB%E0%B8%B2%E0%B9%81%E0%B8%9A%E0%B8%9A%E0%B8%AA%E0%B8%AD%E0%B8%87%E0%B8%97%E0%B8%B4%E0%B8%A8%E0%B8%97%E0%B8%B2%E0%B8%87 + , http://zh.dbpedia.org/resource/%E5%8F%8C%E5%90%91%E6%90%9C%E7%B4%A2 + , http://dbpedia.org/resource/Bidirectional_search + , http://www.wikidata.org/entity/Q59750 + , http://simple.dbpedia.org/resource/Bidirectional_search + , http://sr.dbpedia.org/resource/Dvosmerno_pretra%C5%BEivanje + , http://rdf.freebase.com/ns/m.08w36p + , https://global.dbpedia.org/id/4nJAV + , http://fa.dbpedia.org/resource/%D8%AC%D8%B3%D8%AA%D8%AC%D9%88%DB%8C_%D8%AF%D9%88%D8%AC%D9%87%D8%AA%D9%87 + , http://yago-knowledge.org/resource/Bidirectional_search + , http://de.dbpedia.org/resource/Bidirektionale_Suche + , http://uk.dbpedia.org/resource/%D0%94%D0%B2%D0%BE%D0%BD%D0%B0%D0%BF%D1%80%D0%B0%D0%B2%D0%BB%D0%B5%D0%BD%D0%B8%D0%B9_%D0%BF%D0%BE%D1%88%D1%83%D0%BA +
rdf:type http://dbpedia.org/class/yago/PsychologicalFeature100023100 + , http://dbpedia.org/class/yago/Rule105846932 + , http://dbpedia.org/ontology/Software + , http://dbpedia.org/class/yago/Algorithm105847438 + , http://dbpedia.org/class/yago/YagoPermanentlyLocatedEntity + , http://dbpedia.org/class/yago/Abstraction100002137 + , http://dbpedia.org/class/yago/Activity100407535 + , http://dbpedia.org/class/yago/Event100029378 + , http://dbpedia.org/class/yago/WikicatSearchAlgorithms + , http://dbpedia.org/class/yago/Procedure101023820 + , http://dbpedia.org/class/yago/Act100030358 + , http://dbpedia.org/class/yago/WikicatGraphAlgorithms + , http://dbpedia.org/class/yago/WikicatAlgorithms +
rdfs:comment Bidirectional search is a graph search algBidirectional search is a graph search algorithm that finds a shortest path from an initial vertex to a goal vertex in a directed graph. It runs two simultaneous searches: one forward from the initial state, and one backward from the goal, stopping when the two meet. The reason for this approach is that in many cases it is faster: for instance, in a simplified model of search problem complexity in which both searches expand a tree with branching factor b, and the distance from start to goal is d, each of the two searches has complexity O(bd/2) (in Big O notation), and the sum of these two search times is much less than the O(bd) complexity that would result from a single search from the beginning to the goal.gle search from the beginning to the goal. , Двунаправленный поиск пути в ширину (или глубину) — усложнённый алгоритм поиска в ширину (или глубину), идея которого заключается в формировании процесса поиска от начальной (прямой поиск) и от конечной вершины (обратный поиск) графа. , Двонапра́влений по́шук — ускладнений алгорДвонапра́влений по́шук — ускладнений алгоритм пошуку ушир або пошуку углиб, в основі якого лежить така ідея, що можна одночасно проводити два пошуки (в прямому напрямку, від початкового стану, та у зворотному напрямку, від цілі), зупиняючись після того, як два процеси пошуку зустрінуться на середині (Рис. 1). пошуку зустрінуться на середині (Рис. 1). , 双向搜索算法是一种图的遍历算法,用于在中搜索从一个顶点到另一个顶点的最短路径。算法同双向搜索算法是一种图的遍历算法,用于在中搜索从一个顶点到另一个顶点的最短路径。算法同时运行两个搜索:一个从初始状态正向搜索,另一个从目标状态反向搜索,当两者在中间汇合时搜索停止。在很多情况下该算法更快,假设搜索一棵分支因子b的树,初始节点到目标节点的距离为d,该算法的正向和反向搜索复杂度都是O(bd/2) (大O符号),两者相加后远远小于普通的单项搜索算法(复杂度为O(bd))。 在A*搜尋演算法中,双向搜索的可以定义为:正向搜索为到目标节点的距离,反向搜索为到初始节点的距离。 Ira Pohl ()第一个设计并实现了双向启发式搜索算法。Andrew Goldberg和其他人解释了双向搜索版的戴克斯特拉算法的正确完结条件。ndrew Goldberg和其他人解释了双向搜索版的戴克斯特拉算法的正确完结条件。 , 双方向探索(英: bidirectional search)とは、グラフ探索アルゴリ双方向探索(英: bidirectional search)とは、グラフ探索アルゴリズムの一種で、同時に2つの方向から探索を行う。一方は初期状態から順方向に探索し、もう一方は最終状態から逆方向に探索して、その中間でぶつかった時点で終了する。それぞれの探索の計算量は (ランダウの記号)であり、両方を合わせても となり、一方向から全部の探索を行った場合の よりも効率がよい。 しかし、よいことばかりではない。並列に2つの探索を行う複雑さは別として、探索木をどう拡張していくかを各ステップで決定する必要がある。また、最終状態から逆方向に探索できる状況は限られているし、事前に用意が必要になる場合もある。また、2つの探索木の交差を見つける効率的方法も必要になる。このような問題があるため、うまいヒューリスティックがあるならA*の方がよい選択となることが多い。 双方向探索でもヒューリスティックを使うことができる。A*について証明されているように、許容的ヒューリスティックによって最短解が得られる場合がある。 Ira Pohl は、世界で初めて双方向ヒューリスティック探索アルゴリズムを設計・実装した。最先端の子ノードは、もう一方の側のターゲットについてだけ評価していた。彼の報告によれば、2つの探索木は相手と交差したことを検出できなかったという。ていた。彼の報告によれば、2つの探索木は相手と交差したことを検出できなかったという。 , In der Informatik zählt die BidirektionaleIn der Informatik zählt die Bidirektionale Suche zu den Suchverfahren, spezieller zu den uninformierten Suchverfahren. Wie der A*-Algorithmus und der Dijkstra-Algorithmus ermittelt ein solches Verfahren den Teil eines Graphen der bestimmte Eigenschaften, wie kürzester Weg zwischen zwei gegebenen Knoten (Kürzester Pfad) aufweist. Bei diesem Lösungsverfahren werden zwei Suchen simultan gestartet, jeweils eine an den beiden gegebenen Knoten. Die Suchvorgänge sind gegensätzlich gerichtet, das Verfahren ist abgeschlossen, wenn sich die zwei Teilgraphen kreuzen.n, wenn sich die zwei Teilgraphen kreuzen.
rdfs:label 双向搜索 , Bidirectional search , Двунаправленный поиск , Двонаправлений пошук , 双方向探索 , Bidirektionale Suche
hide properties that link here 
http://dbpedia.org/resource/Shortest_path_problem + , http://dbpedia.org/resource/GraphHopper + , http://dbpedia.org/resource/Held%E2%80%93Karp_algorithm + , http://dbpedia.org/resource/Dijkstra%27s_algorithm + , http://dbpedia.org/resource/List_of_algorithms + , http://dbpedia.org/resource/A%2A_search_algorithm + , http://dbpedia.org/resource/Transit_node_routing + , http://dbpedia.org/resource/Bi-directional_search + http://dbpedia.org/ontology/wikiPageWikiLink
http://en.wikipedia.org/wiki/Bidirectional_search + http://xmlns.com/foaf/0.1/primaryTopic
http://dbpedia.org/resource/Bidirectional_search + owl:sameAs
 

 

Enter the name of the page to start semantic browsing from.