CN104268420A - A star path finding method and system based on binary heap node sorting - Google Patents

A star path finding method and system based on binary heap node sorting Download PDF

Info

Publication number
CN104268420A
CN104268420A CN201410531309.3A CN201410531309A CN104268420A CN 104268420 A CN104268420 A CN 104268420A CN 201410531309 A CN201410531309 A CN 201410531309A CN 104268420 A CN104268420 A CN 104268420A
Authority
CN
China
Prior art keywords
node
open
assessment values
binary heap
star
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN201410531309.3A
Other languages
Chinese (zh)
Inventor
熊仕勇
林金朝
周敏
潘豪
田航
李沁翰
唐浩
张喜平
聂婧
谭世雨
李杨
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Chongqing University of Post and Telecommunications
Original Assignee
Chongqing University of Post and Telecommunications
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Chongqing University of Post and Telecommunications filed Critical Chongqing University of Post and Telecommunications
Priority to CN201410531309.3A priority Critical patent/CN104268420A/en
Publication of CN104268420A publication Critical patent/CN104268420A/en
Pending legal-status Critical Current

Links

Landscapes

  • Measuring Or Testing Involving Enzymes Or Micro-Organisms (AREA)

Abstract

The invention discloses an A star path finding method and system based on binary heap node sorting. The A star path finding method includes: conducting initialization; judging whether a node n in an OPEN graph is a target solution A, if not, unfolding all follow-up nodes of the node n to form directly correlated sub nodes, putting the judged node n in a CLOSE graph, calculating the appraisal value of each follow-up node of the node n, conducting heat sorting on the OPEN graph according to the appraisal value, putting the node with the smallest appraisal value at the graph head of the OPEN graph, and repeating the steps until all the nodes are sorted. The A star path finding method introduces heat sorting in the normal A star algorithm so that the execution efficiency of the A star algorithm is greatly improved. The A star path finding method overcomes the defects of the traditional A star algorithm of frequently maintaining the OPEN graph and the CLOSE graph, causing long calculating time as the nodes in the OPEN graph have to be sorted each time, and being incapable of meeting high game timeliness requirements.

Description

Based on A star method for searching and the system of Binary Heap node sequencing
Technical field
The present invention relates to a kind of game technical field, particularly a kind of A star method for searching based on Binary Heap node sequencing and system.
Background technology
Game is in the industry cycle called as the 9th art, and successful game more can be subject to global player and praise highly.Along with development of Mobile Internet technology application and and the business such as China Mobile network 3G, 4G increment develop rapidly, mobile phone games demonstrate cutting edge.In Games Software, artificial intelligence is an important and complicated module, and pathfinding algorithm is artificial intelligence applies to one of most basic problem in electronic game.Object moves it according to the mode of certain named place of destination and just requires that program must can find an optimal path from starting point to impact point, this paths should be to bypass barrier and arrive the shortest path of destination, and completing the most frequently used algorithm of this task is exactly A star algorithm.A star as a kind of high performance-price ratio pathfinding algorithm always widely use by game industry, the pathfinding algorithm in the game of a lot of client and large-scale web game all based on A star algorithm as: heroic alliance, World of Warcraft, illusion flies celestial being etc.But due to reasons such as mobile phone games operating software condition and hardware are not good, traditional A star algorithm is also badly in need of improving, and improves pathfinding efficiency with this.Tradition A star algorithm needs frequent maintenance OPEN and CLOSE table, and all need to sort to the node in OPEN table at every turn, and complexity averaging time adopting the A star algorithm of bubble sort is O (n^2), suitable slow of efficiency performed, particularly when map is larger, repeatedly search for so large list and seriously can drag slow whole process.This obviously cannot meet the higher feature of game requirement of real-time.
Summary of the invention
In view of this, technical matters to be solved by this invention is to provide a kind of A star method for searching based on Binary Heap node sequencing and system.
An object of the present invention proposes a kind of A star method for searching based on Binary Heap node sequencing; Two of object of the present invention proposes a kind of A star Pathfinding system based on Binary Heap node sequencing.
An object of the present invention is achieved through the following technical solutions:
A star method for searching based on Binary Heap node sequencing provided by the invention, comprises the following steps:
S1: initialization OPEN table, CLOSE table and impact point A, put into OPEN table by start node S, sky put by CLOSE table;
S2: judge whether OPEN table is empty, if not, then get a node n from the gauge outfit of OPEN table; If so, then algorithmic procedure is terminated;
S3: judge whether node n is target solution A, if so, then output node n; If not, then step S4 is proceeded to; Described target solution is the impact point A that finally will find;
S4: launched to form direct correlation child nodes by all successor nodes of node n, judges child node whether in CLOSE table, if not, then child node is put into OPEN and show;
S5: the node n judged is put into CLOSE table, adopts the assessment values f ' (n) of each successor node of following formulae discovery node n simultaneously;
f′(n)=g′(n)+h′(n);
Wherein, f ' (n) is evaluation function, and g ' (n) is the shortest path value that start node arrives node n, and h ' (n) is the inspiration value of node n to the shortest path warp of target;
S6: OPEN table is carried out heapsort by assessment values f ' (x), node minimum for assessment values f ' (x) is placed on the gauge outfit of OPEN table, returns step S2 repetitive cycling.
Further, described OPEN table, for storing the next node for traversal;
Described CLOSE table, for storing the path found.
Further, described heapsort adopts Binary Heap to sort;
Described Binary Heap carries out in the following manner:
First the assessment values f ' (x) that OPEN shows interior joint is obtained, by node placement minimum for assessment values f ' (x) on heap top;
Then from remaining node, select two child nodes of the minimum and secondary little node of assessment values as a upper node;
Finally repeat respectively to be that two sub-sensor selection problem go out two child nodes of the minimum and secondary little node of assessment values as a upper node; Arrange until all OPEN are shown interior joint.
Further, described heapsort adopts Binary Heap to sort; Described Binary Heap carries out in the following manner:
First obtain the assessment values f ' (x) that OPEN shows interior joint, node minimum for assessment values f ' (x) is stored in first element memory address of one-dimension array; Then node minimum for the assessment values f ' (x) in remaining node is stored in second element memory address of one-dimension array, last until complete the sequence of all nodes in OPEN table.
Two of object of the present invention is achieved through the following technical solutions:
A star Pathfinding system based on Binary Heap node sequencing provided by the invention, comprises initialization module, OPEN table judge module, node judge module, association child node module, node assessment values computing module, heapsort module;
Described initialization module, for initialization OPEN table, CLOSE table and impact point A, start node S is put into OPEN table, sky put by CLOSE table;
Described OPEN shows judge module, for judging whether OPEN table is empty, if not, then gets a node n from the gauge outfit of OPEN table; If so, then algorithmic procedure is terminated;
Described node judge module, for judging whether node n is target solution A, if so, then output node n; If not, then step S4 is proceeded to; Described target solution is the impact point A that finally will find, and namely finds a paths to arrive impact point from starting point;
Described association child node module, for being launched to form direct correlation child nodes by all successor nodes of node n, judging child node whether in CLOSE table, if not, then child node being put into OPEN and show;
Described node assessment values computing module, for the node n judged being put into CLOSE table, adopts the assessment values f ' (n) of each successor node of following formulae discovery node n simultaneously;
f′(n)=g′(n)+h′(n);
Wherein, f ' (n) is evaluation function, and g ' (n) is the shortest path value that start node arrives node n, and h ' (n) is the inspiration value of node n to the shortest path warp of target;
Described heapsort module, for OPEN table is carried out heapsort by assessment values f ' (x), is placed on the gauge outfit of OPEN table by node minimum for assessment values f ' (x).
Further, described OPEN table, for storing the next node for traversal;
Described CLOSE table, for storing the path found.
Further, the heapsort in described heapsort module adopts Binary Heap to sort;
Described Binary Heap carries out in the following manner:
First the assessment values f ' (x) that OPEN shows interior joint is obtained, by node placement minimum for assessment values f ' (x) on heap top;
Then from remaining node, select two child nodes of the minimum and secondary little node of assessment values as a upper node;
Finally repeat respectively to be that two sub-sensor selection problem go out two child nodes of the minimum and secondary little node of assessment values as a upper node; Arrange until all OPEN are shown interior joint.
Further, the heapsort in described heapsort module adopts Binary Heap to sort; Described Binary Heap carries out in the following manner:
First obtain the assessment values f ' (x) that OPEN shows interior joint, node minimum for assessment values f ' (x) is stored in first element memory address of one-dimension array; Then node minimum for the assessment values f ' (x) in remaining node is stored in second element memory address of one-dimension array, last until complete the sequence of all nodes in OPEN table
Beneficial effect of the present invention is: the present invention introduces heapsort in common A star algorithm, significantly improves A star algorithm execution efficiency with this.Overcome traditional A star algorithm and need frequent maintenance OPEN and CLOSE table, and all need the shortcoming that to sort computing time caused long of the node in OPEN table at every turn, and the higher feature of game requirement of real-time cannot be met.
Accompanying drawing explanation
In order to make the object, technical solutions and advantages of the present invention clearly, below in conjunction with accompanying drawing, the present invention is described in further detail, wherein:
The A star method for searching process flow diagram based on Binary Heap node sequencing that Fig. 1 provides for the embodiment of the present invention;
The A star Pathfinding system figure based on Binary Heap node sequencing that Fig. 2 provides for the embodiment of the present invention.
Embodiment
Hereinafter with reference to accompanying drawing, the preferred embodiments of the present invention are described in detail.Should be appreciated that preferred embodiment only in order to the present invention is described, instead of in order to limit the scope of the invention.
Embodiment 1
The A star method for searching process flow diagram based on Binary Heap node sequencing that Fig. 1 provides for the embodiment of the present invention, as shown in the figure: the A star method for searching based on Binary Heap node sequencing provided by the invention, comprises the following steps:
S1: initialization OPEN table, CLOSE table and impact point A, put into OPEN table by start node S, sky put by CLOSE table;
S2: judge whether OPEN table is empty, if not, then get a node n from the gauge outfit of OPEN table; If so, then algorithmic procedure is terminated;
S3: judge whether node n is target solution A, if so, then output node n; If not, then step S4 is proceeded to; Described target solution is the impact point A that finally will find, and namely finds a paths to arrive impact point from starting point;
S4: launched to form direct correlation child nodes by all successor nodes of node n, judges child node whether in CLOSE table, if not, then child node is put into OPEN and show;
S5: the node n judged is put into CLOSE table, adopts the assessment values f ' (n) of each successor node of following formulae discovery node n simultaneously;
f′(n)=g′(n)+h′(n);
Wherein, f ' (n) is evaluation function, and g ' (n) is the shortest path value that start node arrives node n, and h ' (n) is the inspiration value of node n to the shortest path warp of target;
S6: OPEN table is carried out heapsort by assessment values f ' (x), node minimum for assessment values f ' (x) is placed on the gauge outfit of OPEN table, returns step S2 repetitive cycling.
Described OPEN table, for storing the next node for traversal;
Described CLOSE table, for storing the path found.
Described heapsort adopts Binary Heap to sort;
Described Binary Heap carries out in the following manner:
First the assessment values f ' (x) that OPEN shows interior joint is obtained, by node placement minimum for assessment values f ' (x) on heap top;
Then from remaining node, select two child nodes of the minimum and secondary little node of assessment values as a upper node;
Finally repeat respectively to be that two sub-sensor selection problem go out two child nodes of the minimum and secondary little node of assessment values as a upper node; Arrange until all OPEN are shown interior joint.
Described heapsort adopts Binary Heap to sort; Described Binary Heap carries out in the following manner:
First obtain the assessment values f ' (x) that OPEN shows interior joint, node minimum for assessment values f ' (x) is stored in first element memory address of one-dimension array; Then node minimum for the assessment values f ' (x) in remaining node is stored in second element memory address of one-dimension array, last until complete the sequence of all nodes in OPEN table.
The A star Pathfinding system figure based on Binary Heap node sequencing that Fig. 2 provides for the embodiment of the present invention, as shown in the figure, the present embodiment additionally provides a kind of A star Pathfinding system based on Binary Heap node sequencing, comprises initialization module, OPEN table judge module, node judge module, association child node module, node assessment values computing module, heapsort module;
Described initialization module, for initialization OPEN table, CLOSE table and impact point A, start node S is put into OPEN table, sky put by CLOSE table;
Described OPEN shows judge module, for judging whether OPEN table is empty, if not, then gets a node n from the gauge outfit of OPEN table; If so, then algorithmic procedure is terminated;
Described node judge module, for judging whether node n is target solution A, if so, then output node n; If not, then step S4 is proceeded to; Described target solution is the impact point A that finally will find, and namely finds a paths to arrive impact point from starting point;
Described association child node module, for being launched to form direct correlation child nodes by all successor nodes of node n, judging child node whether in CLOSE table, if not, then child node being put into OPEN and show;
Described node assessment values computing module, for the node n judged being put into CLOSE table, adopts the assessment values f ' (n) of each successor node of following formulae discovery node n simultaneously;
f′(n)=g′(n)+h′(n);
Wherein, f ' (n) is evaluation function, and g ' (n) is the shortest path value that start node arrives node n, and h ' (n) is the inspiration value of node n to the shortest path warp of target;
Described heapsort module, for OPEN table is carried out heapsort by assessment values f ' (x), is placed on the gauge outfit of OPEN table by node minimum for assessment values f ' (x).
Described OPEN table, for storing the next node for traversal;
Described CLOSE table, for storing the path found.
Heapsort in described heapsort module adopts Binary Heap to sort;
Described Binary Heap carries out in the following manner:
First the assessment values f ' (x) that OPEN shows interior joint is obtained, by node placement minimum for assessment values f ' (x) on heap top;
Then from remaining node, select two child nodes of the minimum and secondary little node of assessment values as a upper node;
Finally repeat respectively to be that two sub-sensor selection problem go out two child nodes of the minimum and secondary little node of assessment values as a upper node; Arrange until all OPEN are shown interior joint.
Heapsort in described heapsort module adopts Binary Heap to sort; Described Binary Heap carries out in the following manner:
First obtain the assessment values f ' (x) that OPEN shows interior joint, node minimum for assessment values f ' (x) is stored in first element memory address of one-dimension array; Then node minimum for the assessment values f ' (x) in remaining node is stored in second element memory address of one-dimension array, last until complete the sequence of all nodes in OPEN table.
Embodiment 2
The difference of the present embodiment and embodiment 1 is only:
The present embodiment states the A star method for searching based on Binary Heap node sequencing in detail, and the method that the present embodiment provides is in A star algorithm, introduce the sequence that Binary Heap carries out node, thus improves the efficiency of algorithm, and detailed process is as follows:
1, initialization OPEN table (for storing the next node for traversal), CLOSE shows (for storing the path found), start node S is put into OPEN table, and sky put by CLOSE table;
If 2 OPEN tables are not empty, get a node n from gauge outfit, if be the failure of empty algorithm;
3, judge that node n is target solution, if so, find a solution (continuation searching, or termination algorithm); If not proceeding to step 4;
4, the 4th step is divided into following step
4.1, all successor nodes of node n are launched, are exactly can the node (child node) of direct correlation from node n, if not in CLOSE table, just they are put into OPEN and show,
4.2 and S put into CLOSE table, calculate the assessment values f ' (n) of each successor node simultaneously.
(f ' (n)=g ' (n)+h ' (n), f ' (n) is evaluation function, g ' (n) is the shortest path value of starting point to node n, and h ' (n) is the inspiration value that n arrives the shortest path warp of target.
4.3, OPEN table is carried out heapsort by f (x), minimum is placed on gauge outfit, and repeating algorithm proceeds to step 2
What finally illustrate is, above embodiment is only in order to illustrate technical scheme of the present invention and unrestricted, although by referring to the preferred embodiments of the present invention, invention has been described, but those of ordinary skill in the art is to be understood that, various change can be made to it in the form and details, and not depart from the spirit and scope of the present invention that appended claims limits.

Claims (8)

1., based on the A star method for searching of Binary Heap node sequencing, it is characterized in that: comprise the following steps:
S1: initialization OPEN table, CLOSE table and impact point A, put into OPEN table by start node S, sky put by CLOSE table;
S2: judge whether OPEN table is empty, if not, then get a node n from the gauge outfit of OPEN table; If so, then algorithmic procedure is terminated;
S3: judge whether node n is target solution A, if so, then terminates algorithm, if not, then proceeds to step S4; Described target solution is the impact point A that finally will find;
S4: launched to form direct correlation child nodes by all successor nodes of node n, judges child node whether in CLOSE table, if not, then child node is put into OPEN and show;
S5: the node n judged is put into CLOSE table, adopts the assessment values f ' (n) of each successor node of following formulae discovery node n simultaneously;
f′(n)=g′(n)+h′(n);
Wherein, f ' (n) is evaluation function, and g ' (n) is the shortest path value that start node arrives node n, and h ' (n) is the inspiration value of node n to the shortest path warp of target;
S6: OPEN table is carried out heapsort by assessment values f ' (x), node minimum for assessment values f ' (x) is placed on the gauge outfit of OPEN table, returns step S2 repetitive cycling.
2. the A star method for searching based on Binary Heap node sequencing according to claim 1, is characterized in that: described OPEN table, for storing the next node for traversal; Described CLOSE table, for storing the path found.
3. the A star method for searching based on Binary Heap node sequencing according to claim 1, is characterized in that: described heapsort adopts Binary Heap to sort;
Described Binary Heap carries out in the following manner:
First the assessment values f ' (x) that OPEN shows interior joint is obtained, by node placement minimum for assessment values f ' (x) on heap top;
Then from remaining node, select two child nodes of the minimum and secondary little node of assessment values as a upper node;
Finally repeat respectively to be that two sub-sensor selection problem go out two child nodes of the minimum and secondary little node of assessment values as a upper node; Arrange until all OPEN are shown interior joint.
4. the A star method for searching based on Binary Heap node sequencing according to claim 1, is characterized in that: described heapsort adopts Binary Heap to sort; Described Binary Heap carries out in the following manner:
First obtain the assessment values f ' (x) that OPEN shows interior joint, node minimum for assessment values f ' (x) is stored in first element memory address of one-dimension array; Then node minimum for the assessment values f ' (x) in remaining node is stored in second element memory address of one-dimension array, last until complete the sequence of all nodes in OPEN table.
5. based on the A star Pathfinding system of Binary Heap node sequencing, it is characterized in that: comprise initialization module, OPEN table judge module, node judge module, association child node module, node assessment values computing module, heapsort module;
Described initialization module, for initialization OPEN table, CLOSE table and impact point A, start node S is put into OPEN table, sky put by CLOSE table;
Described OPEN shows judge module, for judging whether OPEN table is empty, if not, then gets a node n from the gauge outfit of OPEN table; If so, then algorithmic procedure is terminated;
Described node judge module, for judging whether node n is target solution A, if so, then output node n, and return step S2 and get another node from the gauge outfit that OPEN shows; If not, then step S4 is proceeded to; Described target solution is the impact point A that finally will find, and namely finds a paths to arrive impact point from starting point;
Described association child node module, for being launched to form direct correlation child nodes by all successor nodes of node n, judging child node whether in CLOSE table, if not, then child node being put into OPEN and show;
Described node assessment values computing module, for the node n judged being put into CLOSE table, adopts the assessment values f ' (n) of each successor node of following formulae discovery node n simultaneously;
f′(n)=g′(n)+h′(n);
Wherein, f ' (n) is evaluation function, and g ' (n) is the shortest path value that start node arrives node n, and h ' (n) is the inspiration value of node n to the shortest path warp of target;
Described heapsort module, for OPEN table is carried out heapsort by assessment values f ' (x), is placed on the gauge outfit of OPEN table by node minimum for assessment values f ' (x).
6. the A star Pathfinding system based on Binary Heap node sequencing according to claim 1, is characterized in that: described OPEN table, for storing the next node for traversal;
Described CLOSE table, for storing the path found.
7. the A star Pathfinding system based on Binary Heap node sequencing according to claim 1, is characterized in that: the heapsort in described heapsort module adopts Binary Heap to sort;
Described Binary Heap carries out in the following manner:
First the assessment values f ' (x) that OPEN shows interior joint is obtained, by node placement minimum for assessment values f ' (x) on heap top;
Then from remaining node, select two child nodes of the minimum and secondary little node of assessment values as a upper node;
Finally repeat respectively to be that two sub-sensor selection problem go out two child nodes of the minimum and secondary little node of assessment values as a upper node; Arrange until all OPEN are shown interior joint.
8. the A star Pathfinding system based on Binary Heap node sequencing according to claim 1, is characterized in that: the heapsort in described heapsort module adopts Binary Heap to sort; Described Binary Heap carries out in the following manner:
First obtain the assessment values f ' (x) that OPEN shows interior joint, node minimum for assessment values f ' (x) is stored in first element memory address of one-dimension array; Then node minimum for the assessment values f ' (x) in remaining node is stored in second element memory address of one-dimension array, last until complete the sequence of all nodes in OPEN table.
CN201410531309.3A 2014-10-10 2014-10-10 A star path finding method and system based on binary heap node sorting Pending CN104268420A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN201410531309.3A CN104268420A (en) 2014-10-10 2014-10-10 A star path finding method and system based on binary heap node sorting

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN201410531309.3A CN104268420A (en) 2014-10-10 2014-10-10 A star path finding method and system based on binary heap node sorting

Publications (1)

Publication Number Publication Date
CN104268420A true CN104268420A (en) 2015-01-07

Family

ID=52159941

Family Applications (1)

Application Number Title Priority Date Filing Date
CN201410531309.3A Pending CN104268420A (en) 2014-10-10 2014-10-10 A star path finding method and system based on binary heap node sorting

Country Status (1)

Country Link
CN (1) CN104268420A (en)

Cited By (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106790224A (en) * 2017-01-13 2017-05-31 腾讯科技(深圳)有限公司 The method and server of a kind of control simulated object pathfinding
CN108815850A (en) * 2018-06-15 2018-11-16 腾讯科技(深圳)有限公司 A kind of method and client controlling simulated object pathfinding
CN109470249A (en) * 2018-11-07 2019-03-15 河海大学 A kind of optimum path planning of submarine navigation device and obstacle avoidance design method
CN109618401A (en) * 2019-01-29 2019-04-12 吉林工程技术师范学院 Body area network Energy-aware adaptive optimization method based on two-way simultaneous A star algorithm
CN110487295A (en) * 2019-09-06 2019-11-22 中国计量大学 A kind of time-optimized smooth A* algorithm
CN112034841A (en) * 2020-08-05 2020-12-04 深圳技术大学 Goods picking method and system in unmanned environment and computer readable storage medium

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102155942A (en) * 2011-02-26 2011-08-17 山东大学 Global path planning method based on fuzzy topological map under large-scale environment

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN102155942A (en) * 2011-02-26 2011-08-17 山东大学 Global path planning method based on fuzzy topological map under large-scale environment

Non-Patent Citations (5)

* Cited by examiner, † Cited by third party
Title
刘念祖: "立体二叉树在排序中的应用", 《上海师范大学学报(自然科学版)》 *
周清军: "基于虚拟现实的无人机航迹规划仿真系统设计及初步实现", 《中国优秀硕士学位论文全文数据库 信息科技辑》 *
李子强等: "基于Silverlight网页游戏的寻径优化算法", 《计算机工程与应用》 *
霍国平等: "基于3星子集的GPS快速选星算法", 《宇航学报》 *
黎佩南: "一种快速排序算法的实现及其应用", 《电讯技术》 *

Cited By (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN106790224A (en) * 2017-01-13 2017-05-31 腾讯科技(深圳)有限公司 The method and server of a kind of control simulated object pathfinding
CN106790224B (en) * 2017-01-13 2018-09-07 腾讯科技(深圳)有限公司 A kind of method and server of control simulated object pathfinding
CN108815850A (en) * 2018-06-15 2018-11-16 腾讯科技(深圳)有限公司 A kind of method and client controlling simulated object pathfinding
CN109470249A (en) * 2018-11-07 2019-03-15 河海大学 A kind of optimum path planning of submarine navigation device and obstacle avoidance design method
CN109618401A (en) * 2019-01-29 2019-04-12 吉林工程技术师范学院 Body area network Energy-aware adaptive optimization method based on two-way simultaneous A star algorithm
CN109618401B (en) * 2019-01-29 2021-07-27 吉林工程技术师范学院 Body area network energy perception self-adaptive optimization method based on bidirectional parallel A-star algorithm
CN110487295A (en) * 2019-09-06 2019-11-22 中国计量大学 A kind of time-optimized smooth A* algorithm
CN112034841A (en) * 2020-08-05 2020-12-04 深圳技术大学 Goods picking method and system in unmanned environment and computer readable storage medium

Similar Documents

Publication Publication Date Title
CN104268420A (en) A star path finding method and system based on binary heap node sorting
CN104613976B (en) Determine the method and device in path
CN107622709A (en) Knowledge point Grasping level evaluation method, medium and electronic equipment
CN101567818B (en) Large-scale network routing simulation method based on hardware
CN107063258A (en) A kind of mobile robot indoor navigation method based on semantic information
CN110533723A (en) The determination method and device of method, posture information that augmented reality is shown
CN107169557A (en) A kind of method being improved to cuckoo optimized algorithm
CN105095178B (en) Method and system for realizing text semantic fault-tolerant understanding
CN106156082A (en) A kind of body alignment schemes and device
CN105913125B (en) Heterogeneous information network element path determines, link prediction method and device
CN105893535A (en) Intelligent question and answer method, knowledge base optimizing method and device and intelligent knowledge base
CN110009956A (en) English Grammar adaptive learning method and learning device
CN106295793A (en) Group robot mixed search algorithm based on biological foraging behavior
CN104750762A (en) Information retrieval method and device
Hajibagheri et al. Social networks community detection using the shapley value
CN110514211A (en) Localization method, device, equipment and medium
Kim et al. Context-Aware Planning and Environment-Aware Memory for Instruction Following Embodied Agents
CN105404529A (en) Popup method, device and system of operation system popup for reinstallation
CN110457212B (en) Test modeling and test case automatic generation method based on complex system
Hsu et al. FPGA implementation of improved ant colony optimization algorithm for path planning
CN103279420A (en) Optimized automation testing method and system for application program of mobile terminal
CN107329170B (en) A kind of seismic waveform matching process and device
CN110187946A (en) A kind of application program adaptation method, device and storage medium
CN107315801B (en) parallel discrete event simulation system initialization data storage method
CN108665003A (en) A kind of system fragility discovery method and system based on topology measurements relationship

Legal Events

Date Code Title Description
C06 Publication
PB01 Publication
C10 Entry into substantive examination
SE01 Entry into force of request for substantive examination
RJ01 Rejection of invention patent application after publication

Application publication date: 20150107

RJ01 Rejection of invention patent application after publication