WO2017113569A1 - 一种基于a星策略的最优多会合点路径搜索方法及装置 - Google Patents

一种基于a星策略的最优多会合点路径搜索方法及装置 Download PDF

Info

Publication number
WO2017113569A1
WO2017113569A1 PCT/CN2016/082316 CN2016082316W WO2017113569A1 WO 2017113569 A1 WO2017113569 A1 WO 2017113569A1 CN 2016082316 W CN2016082316 W CN 2016082316W WO 2017113569 A1 WO2017113569 A1 WO 2017113569A1
Authority
WO
WIPO (PCT)
Prior art keywords
cost
label
queue
path
state
Prior art date
Application number
PCT/CN2016/082316
Other languages
English (en)
French (fr)
Inventor
李荣华
邱宇轩
毛睿
秦璐
钟舒馨
Original Assignee
深圳大学
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 深圳大学 filed Critical 深圳大学
Publication of WO2017113569A1 publication Critical patent/WO2017113569A1/zh

Links

Images

Classifications

    • GPHYSICS
    • G16INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR SPECIFIC APPLICATION FIELDS
    • G16ZINFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR SPECIFIC APPLICATION FIELDS, NOT OTHERWISE PROVIDED FOR
    • G16Z99/00Subject matter not provided for in other main groups of this subclass

Definitions

  • the invention relates to the field of real-time sharing application technology, in particular to an optimal multi-join point path searching method and device based on A-star strategy applied to real-time multiplication.
  • Real-time multiplication also known as dynamic carpooling
  • many real-time ride-in applications such as Uber (www.uber.com) and Lyft (www.lyft.com)
  • Uber www.uber.com
  • Lyft www.lyft.com
  • ride-in system there are two types of entities: the driver and the passenger. Passengers can book a car through their smartphone with a location function. They need to provide their geographic location information to the system, and then the system dynamically arranges for the driver to provide a ride for these passengers.
  • the patent defines the OMMRP problem.
  • the patent application abstracts the road network into a weighted graph G(V, E, W), where V, E and W are respectively a set of points, sets of edges and weights.
  • n
  • m
  • w v i, v j
  • the graph G is an undirected graph, but in fact our method can be used to process directed graphs.
  • dist(u,v i ) is the distance from node u to node v i .
  • the parameter ⁇ ⁇ (0, 1) is used to balance the ratio of the sum of the distances between the points P St and U to P st .
  • the distance between all points in U to P st occupies the same proportion (1- ⁇ ).
  • c(P st ) represents the driver's cost. Represents the cost of all passengers.
  • the goal of the OMMPR search is to find a path P st from the source node s to the destination node t in the graph G such that f(P st ) is minimized.
  • the goal of OMMRP to search for Q(s, t, U, ⁇ ) is to find a s ⁇ t path P st on graph G, such that f(P st ) Minimal, ie
  • P st is a collection of all paths from s to t.
  • the OMMPR algorithm is based on dynamic programming, using (u, X) to represent a state, where u represents the end node of a path and X is a subset of U.
  • the algorithm finds the optimal path by extending the end node of a path and the subset X of U.
  • the optimal path is obtained.
  • f(u,X) be the average cost of an OMMPR path, ie
  • the object of the present invention is to provide an optimal multi-join point path searching method and device based on the A-star strategy, which can effectively and more efficiently determine the optimal by improving the optimal multi-join point path searching method in the background art.
  • the path is so that the driver can pick up all the matching passengers.
  • An optimal multi-join point path search method based on A-star strategy including:
  • the C(x, y, U) is the optimal cost of the state (x, y, X), and the state (x, y, X) represents a starting from x, ending at y and passing through all nodes in the set X. Path, where And x, y ⁇ X;
  • the method for calculating C(x, y, U) by using the full set path algorithm is:
  • the operation method for calculating the lower bound is:
  • a path search unit configured to search for preset information according to the path, and search for an optimal path from the starting point s to the destination point t in the graph G by any of the methods described above;
  • Search result output unit for outputting an optimal path searched by the path search unit.
  • the mobile terminal includes: a mobile phone, a smart phone, a notebook computer, a personal digital assistant, and a tablet computer.
  • the present invention has the following advantages:
  • the optimal multi-joining point path searching method based on the A-star strategy proposed by the present invention can solve the technical difficulty 2 in the real-time synchronizing application more effectively than the previous method, that is, after matching the driver and the passenger, how to Quickly determining the optimal path allows the driver to pick up all matching passengers.
  • the efficiency and practicability of the algorithm are greatly improved.
  • Figure 1 is a schematic diagram of a road network
  • FIG. 2 is a schematic diagram of an expansion manner in which the state (v, X) adopts edge growth
  • Figure 3 is a schematic diagram of an extension of the state (v, X) using point growth.
  • the technical solution adopted by the present invention is to optimize the OMMRP algorithm by using the bidirectional search and the A-star strategy.
  • bidirectional search-optimized algorithm a bidirectional grow, which consists of two parts, forward growth and backward growth.
  • the forward growth starts from the s point
  • the reverse growth starts from the t point
  • the two interact we maintain the cost of an optimal path that has been calculated, denoted as best.
  • the algorithm starts, we set the best to + ⁇ and will Push in the priority queue Q.
  • the algorithm selects the top state (v, X) from the priority queue as the current state and applies the methods in the OMMRP algorithm to extend the current state. Assume that the current optimal cost states of forward growth and reverse growth are (v, X) and (u, UX), respectively.
  • Figure G (V, E, W), point set U, ⁇ , starting point s, destination point t.
  • Figure G (V, E, W), point set U, ⁇ , starting point s, destination point t.
  • queue Q In the priority queue Q, lb in each element ((label, v, X), cost, lb) is prioritized, and the element with the smallest lb is always at the beginning of the queue.
  • Queue Q has three operations, pop, push, and update.
  • the pop-up operation dequeues the leader element, which is the smallest element of the lb, from the queue.
  • the push operation pushes an element into the queue.
  • the update operation updates the cost and lb of an element in the queue and adjusts the queue so that it stays in order of priority.
  • a set D is also used in the algorithm to save the state that has been calculated.
  • the present invention also provides an optimal multi-join point path searching device, including:
  • a path searching unit configured to search for preset information according to the path, and search for an optimal path from the starting point s to the destination point t in the graph G by using the foregoing searching method;
  • Search result output unit used to output and display the optimal path; the display mode can adopt different ways according to the user's usage habits or individualized requirements.
  • the above-mentioned optimal multi-joining point path searching device can be applied to various mobile terminals, and specifically can be a mobile phone, a smart phone, a notebook computer, a personal digital assistant, a tablet computer, and the terminal can be used as long as a terminal equipped with a real-time sharing application can be used. .
  • the algorithm pops the state from queue Q. Forward expansion Then generated 4 elements, And ((s, v 1 , ⁇ v 6 ⁇ ), 3/2, 7/2). Due to state The lower bound of the state (s, v 1 , ⁇ v 6 ⁇ ) is larger than best, so it is excluded. So will the element with Join queue Q.

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
  • Management, Administration, Business Operations System, And Electronic Commerce (AREA)

Abstract

一种基于A星策略的最优多会合点路径搜索方法及装置,其中的方法包括:获取路径搜索预设信息,包括:图G=(V,E,W),点集U,α,出发点s,目的点t;然后,再执行以下步骤:(1)使用全集合路径算法计算C(x,y,U),其中x,y∈U;(2)当α≤1/3时,返回α×minx∈U,y∈U(dist(s,x)+C(x,y,U)+dist(y,t));(3)求出从s到t的最短路径P';(4)计算α×c(P')+(1-α)x∑x∈U(minx∈VP'dist(x,v)) 并赋值给best;(5)初始化队列Q和集合D,将初始状态 ((s,s,∅),0,lb((s,s,∅),t,U,0,D) 和((t,t,∅),0,lb((t,t,∅),s,U,0,D)加入队列Q,其中lb()是计算下界的操作,其结果lb是队列Q的优先序;(6)当队列Q不为空时通过循环操作以找到最优解。该方法及装置能够更加高效地解决实时合乘应用中技术难点,大大提升了高效性与实用性。

Description

一种基于A星策略的最优多会合点路径搜索方法及装置 技术领域
本发明涉及实时合乘应用技术领域,尤其涉及一种应用于实时合乘的基于A星策略的最优多会合点路径搜索方法及装置。
背景技术
实时合乘,又被称作动态拼车,是现代交通系统中一种颇具发展前景的节省燃油并减轻交通拥堵的方式。最近一段时间以来,许多实时合乘应用,诸如Uber(www.uber.com)、Lyft(www.lyft.com),在智能手机用户中越来越受欢迎,因为这可以帮助他们规划旅程。在典型的实时合乘系统中,有两种实体:驾驶者和乘客。乘客可以通过他们带定位功能的智能手机来预定汽车。他们需要提供他们的地理位置信息给系统,随后系统动态地安排驾驶者为这些乘客提供合乘服务。
架设一个这样的实时合乘系统不是一件容易的事。主要的技术难点有两个:1、如何快速地找到可以服务进来的用户请求的驾驶者;2、匹配好了驾驶者和乘客之后,又该如何快速地确定最优的路径让驾驶者可以接上所有的匹配的乘客。在文献里,现有的一些研究主要集中在解决第一个问题。
例如,在文献[2]“S.Ma,Y.Zheng,and O.Wolfson,“T-share:A large-scale dynamic taxi ridesharing service,”in 2013 IEEE 29th International Conference on Data Engineering(ICDE),2013,pp.410–421”和文献[3]“S.Ma and O.Wolfson,“Analysis and evaluation of the slugging form of ridesharing,”in Proceedings of the 21st ACM SIGSPATIAL International Conference on Advances in Geographic Information Systems,2013,pp.64–73”中,Shuo Ma等人做出了一个叫T-share的系统,用于的士合乘应用中,驾驶者和乘客的实时匹配。在文献[1](Y.Huang, R.Jin,F.Bastani,and X.S.Wang,“Large Scale Real-time Ridesharing with Service Guarantee on Road Networks,”ArXiv13026666 Cs,Feb.2013)中,Yan Huang等人提出了一种高效的活动树算法来支持一种有服务保证的驾驶者和乘客之间的匹配。这几种算法的工作都集中在开发一种实用的算法来高效地解决驾驶者和乘客之间的匹配问题,即上文所述的技术难点1。而对于上文所述的技术难点2,本申请人在申请号为201510274711.2、名称为“应用于实时合乘的最优多会合点路径搜索方法及装置”的专利申请[4]中提出了OMMPR算法的解决方案。
在OMMPR算法的解决方案里,该专利定义了OMMPR问题。该专利申请将公路网络抽象成为一个加权图G(V,E,W),这里V,E和W分别为点集,边集和权值的集合。令n=|V|表示点的数目,m=|E|表示边的数目。边(vi,vj)上的权值w(vi,vj)表示点vi到点vj之间的距离。这里我们将图G作为一个无向图来处理,但是实际上我们的方法可以被用于处理有向图。我们将s~t路径记为Pst=(s,v1,…,vk-1,t)。令v0=s,vk=t,
Figure PCTCN2016082316-appb-000001
为Pst上的节点的集合,即
Figure PCTCN2016082316-appb-000002
则我们可以将路径上的总花费记为
Figure PCTCN2016082316-appb-000003
注意这里的路径不一定是一条无重复顶点的简单路径。令
Figure PCTCN2016082316-appb-000004
为顶点的子集,对于每一个u∈U,我们定义从节点u到路径Pst上的点集
Figure PCTCN2016082316-appb-000005
的距离为:
Figure PCTCN2016082316-appb-000006
这里的dist(u,vi)是从节点u到节点vi的距离。很明显的,这里的
Figure PCTCN2016082316-appb-000007
表明了从节点u到路径Pst的距离。如果一个节点
Figure PCTCN2016082316-appb-000008
并且有
Figure PCTCN2016082316-appb-000009
那么我们就称节点v为节点u与路径Pst的会合点。
我们定义
Figure PCTCN2016082316-appb-000010
为集合U中所有的点到路径Pst的距离总和,即
Figure PCTCN2016082316-appb-000011
则对于给定的s,t,U和α,我们可以构造出路径Pst的平均花费函数:
Figure PCTCN2016082316-appb-000012
这里的参数α∈(0,1),用于平衡路径Pst和U中的点到Pst之间的距离和的比 重。在这里我们考虑U中所有的点到Pst之间的距离占有相同的比重(1-α)。但是我们的方法可以被扩展为支持处理不同点不同比重的情况。明显地,在实时合乘应用中,c(Pst)代表了驾驶者的花费,
Figure PCTCN2016082316-appb-000013
代表了所有乘客的花费。OMMPR搜索的目标就是在图G中找到一条从源节点s到目的节点t的路径Pst,使得f(Pst)取得最小。
OMMPR搜索的正式定义如下:
对于给定的路网G=(V,E,W),OMMPR搜索Q(s,t,U,α)的目标是找到一条图G上的s~t路径Pst,使得f(Pst)最小,即
min f(Pst)
s.t.Pst∈Pst
这里的Pst是所有从s到t的路径的集合。
针对OMMPR问题,在201510274711.2专利申请中,我们开发了一种高效的算法——OMMPR算法。
OMMPR算法基于动态规划,利用(u,X)来表示一个状态,这里的u表示一条路径的终节点,X是U的一个子集。该算法通过扩展一条路径的终节点和U的子集X来寻找最优路径,当u=t,X=U的时候,就取得了最优的路径。令f(u,X)为一条OMMPR路径的平均花费,即
Figure PCTCN2016082316-appb-000014
当u=s的时候,我们有f(s,X)满足
Figure PCTCN2016082316-appb-000015
因为当u=s的时候,从s到u的路径只包含一个点s,所以路径上的花费为0,而从U中节点到路径的花费和为
Figure PCTCN2016082316-appb-000016
明显地,当
Figure PCTCN2016082316-appb-000017
时,
Figure PCTCN2016082316-appb-000018
对于每一个状态(v,X),我们有两种扩展方式,边增长(edge growing)和点增长(node growing)。在边增长时,我们用一条边(v,u)∈E来扩展状态(v,X)为新的状态(u,X)。在点增长是,我们用每一个节点x∈U-X来扩展状态(v,X)为新的状态(v,X∪{x})。则状态转移方程如下所示:
Figure PCTCN2016082316-appb-000019
上式的 解释如下:令Psu表示从s出发到u结束,考虑点集X的最优的路径。f(u,X)表示Psu的花费。则f(u,X)可以通过以下两种方式获得。
1、边增长。对于集合X中的查询点和最优路径Psu,假设所有的会合点都在集合
Figure PCTCN2016082316-appb-000020
上。在这种情况下,我们可以通过扩展子路径Psv,在它上面加上边(v,u)∈E,来获得最优的路径Psu。因为此时所有的会合点都落在最优子路径Psv上。图2展示了边增长的过程。很明显,此时有
Figure PCTCN2016082316-appb-000021
2、点增长。假设至少一个点x∈X与最优路径Psu的会合点落在点u。在这种情况下,我们可以通过扩展考虑集合X-{x}的最优路径Psu来获得考虑集合X的最优路径Psu。图3展示了点增长的过程。我们可以得到
Figure PCTCN2016082316-appb-000022
显然,我们可以通过取上面两者的最小花费作为f(u,X),也就是上面的那个状态转移方程式。
基于上面的状态转移方程,我们设计OMMPR算法来求解问题。经过理论和实验证明,OMMPR算法可以较为有效地解决OMMPR问题,但是该方法在效率上还有待提升。
发明内容
本发明的目的在于提供一种基于A星策略的最优多会合点路径搜索方法及装置,通过对背景技术中的最优多会合点路径搜索方法进行改进,能够有效且更加高效地确定最优的路径以让驾驶者可以接上所有的匹配的乘客。
本发明的目的是通过以下技术方案实现的。
一种基于A星策略的最优多会合点路径搜索方法,包括:
首先,获取路径搜索预设信息,包括:图G=(V,E,W),点集U,α,出发点s,目的点t;其中,V、E和W分别为点集、边集和权值的集合;
Figure PCTCN2016082316-appb-000023
为顶点的子集;参数α∈(0,1),用于平衡图G上s~t路径Pst和U中的点到路径Pst之 间的距离和的比重;然后,再执行以下步骤:
(1)使用全集合路径算法计算C(x,y,U),其中x,y∈U;
所述C(x,y,U)为状态(x,y,X)的最优花费,状态(x,y,X)表示一条从x出发、到y结束并且穿过集合X中所有节点的路径,其中的
Figure PCTCN2016082316-appb-000024
且x,y∈X;
(2)当
Figure PCTCN2016082316-appb-000025
时,返回α×minx∈U,y∈U(dist(s,x)+C(x,y,U)+dist(y,t));
(3)求出从s到t的最短路径P';
(4)计算
Figure PCTCN2016082316-appb-000026
并赋值给best,该best为已经计算过的最优路径的花费;
(5)初始化队列Q和集合D,将初始状态
Figure PCTCN2016082316-appb-000027
Figure PCTCN2016082316-appb-000028
加入队列Q,其中lb()是计算下界的操作,其结果lb是队列Q的优先序;
(6)当队列Q不为空时重复以下步骤:
(6.1)弹出队列Q中第一个元素((label,v,X),cost,lb);
(6.2)将label'标记为label的相反方向;
(6.3)X'为U-X;
(6.4)当v=label'且X=U的时候,返回当前的cost;
(6.5)将状态((label,v,X),cost)加入集合D;
(6.6)对于集合E里的所有(v,u)边循环:
(6.6.1)计算cost+α×w(v,u)并赋值给cost';
(6.6.2)更新(Q,D,best,label',X',(label,u,X),cost');
(6.7)对于集合U-X里的所有x点循环:
(6.7.1)计算cost+(1-α)×dist(x,v)并赋值给cost';
(6.7.2)更新(Q,D,best,label',X'-{x},(label,v,X∪{x}),cost');
(7)所有上述循环结束还没有找到最优解,则返回∞。
其中,所述步骤(1)中,使用全集合路径算法计算C(x,y,U)的方法为:
(A)初始化队列Q和集合D,对于所有的u∈U,将初始状态((u,u,{u}),0)加入队列Q。
(B)当队列Q不为空时重复以下步骤:
(B.1)弹出队列Q中第一个元素((x,y,X),cost);
(B.2)将cost赋值给状态C(x,y,X);
(B.3)将状态(x,y,X)加入集合D;
(B.4)对于集合U-X里的所有点v循环:
(B.4.1)将集合X∪{v}赋值给临时变量集合X';
(B.4.2)将cost的值加上点v到点y的距离并赋值给临时变量cost';
(B.4.3)如果新的状态(x,y,X')存在于集合D中,则跳过本次循环继续;
(B.4.4)如果新的状态(x,y,X')不属于队列Q,则将其加入队列Q;
(B.4.5)如果新的cost'比原来队列Q中的相应状态的cost要小,则更新队列Q中该状态的cost值。
其中,所述步骤(5)中,计算下界(lower bound)的操作方法为:
当(label',v,X')∈D时,返回cost+D.cost((label',v,X'));
当label=s时,即前向增长:
Figure PCTCN2016082316-appb-000029
则计算minx∈X',y∈X'{dist(v,x)+C(x,y,X')+dist(y,t)}赋值给变量c,并返回
Figure PCTCN2016082316-appb-000030
否则直接返回cost+α×dist(v,t);
否则,即反向增长:
Figure PCTCN2016082316-appb-000031
则计算minx∈X',y∈X'{dist(s,x)+C(x,y,X')+dist(y,v)}赋值给变量c,并返回
Figure PCTCN2016082316-appb-000032
否则直接返回cost+α×dist(s,v)。
其中,所述步骤(6.6.2)中,更新(Q,D,best,label',X',(label,u,X),cost')的方法为:
当状态(label,v,X)∈D时,直接返回;
计算lb((label,v,X),label',X',cost,D)并赋值给lb;
当lb≥best时,直接返回;
当状态
Figure PCTCN2016082316-appb-000033
时,将状态((label,v,X),cost,lb)压入队列Q;
当lb小于队列Q中状态(label,v,X)的下界Q.lb((label,v,X))时,同时更新该状态的cost和lb,Q.update((label,v,X),cost,lb);
当(label',v,X')∈D且D.cost((label',v,X'))+cost<best时,计算D.cost((label',v,X'))+cost并赋值给best。
一种基于A星策略的最优多会合点路径搜索装置,适用于移动终端,包括:
搜索信息输入单元:用于获取路径搜索预设信息,包括:图G=(V,E,W),点集U,α,出发点s,目的点t;其中,V、E和W分别为点集、边集和权值的集合;
Figure PCTCN2016082316-appb-000034
为顶点的子集;参数α∈(0,1),用于平衡路径Pst和U中的点到Pst之间的距离和的比重;
路径搜索单元:用于根据所述路径搜索预设信息,通过如上任一所述方法,搜索在所述图G中从出发点s到目的点t的最优路径;
搜索结果输出单元:用于输出显示所述路径搜索单元所搜索到的最优路径。
其中,所述移动终端包括:移动电话、智能电话、笔记本电脑、个人数字助理、平板电脑。
本发明实施例与现有技术相比,本发明具有以下优点:
本发明提出的基于A星策略的最优多会合点路径搜索方法相比之前的方法,能够更加高效地解决实时合乘应用中技术难点2,即,在匹配好了驾驶者和乘客之后,如何快速地确定最优的路径让驾驶者可以接上所有的匹配的乘客。大大提升了该算法的高效性与实用性。
附图说明
图1是一个公路网络的示意图;
图2是对状态(v,X)采用边增长的扩展方式示意图;
图3是对状态(v,X)采用点增长的扩展方式示意图。
具体实施方式
为了使本发明的目的、技术方案及优点更加清楚明白,以下结合附图及实施例,对本发明进行进一步详细说明。应当理解,此处所描述的具体实施例仅仅用以解释本发明,并不用于限定本发明。
为了解决所述背景技术的缺陷,本发明采用的技术方案是使用双向搜索和A星策略优化OMMPR算法。
首先我们考虑双向搜索优化。在OMMPR算法中,我们从出发点s起始,向着目的点t做增长操作。事实上我们也可以从目的点t出发,向着出发点s做增长操作。由此受到双向搜索算法的启发,我们对OMMPR算法进行双向搜索优化。
我们将双向搜索优化过后的算法称为双向增长算法(bidirectional grow),它由两部分组成,分别为前向增长(forward grow)和反向增长(backward grow)。在改算法中,前向增长从s点出发,反向增长从t点出发,两者交互进行。在算法扩展状态的过程中,我们维持一个已经计算过的最优路径的花费,记为best。算法开始,我们将best设为+∞,并且将
Figure PCTCN2016082316-appb-000035
压入优先队列Q。随后算法从优先队列中选取最前面的状态(v,X)作为当前状态,并且应用OMMPR算法中的方法来扩展当前状态。假设前向增长和反向增长的当前最优花费的状态分别为(v,X)和(u,U-X)。当前向增长扫描边(v,u)时,我们可以获得一条候选路径,它的花费为c=f(v,X)+f(u,U-X)+α×w(v,u)。当
Figure PCTCN2016082316-appb-000036
的时候,表明我们得到了一条更优的路径,此时,将best更新为c。对于反向增长,我们进行相类似的操作。双向增长算法的终止条件是:当一个方向弹出状态(v,X)的时候,状态 (v,U-X)的最优花费已经在另一个方向被计算过了。
双向增长算法的正确性可以由双向搜索理论来证明,参阅文献[5](I.Pohl,Bi-directional search.IBM TJ Watson Research Center,1970.)、文献[6](A.V.Goldberg and C.Harrelson,―Computing the shortest path:A search meets graph theory,”in Proceedings of the sixteenth annual ACM-SIAM symposium on Discrete algorithms,2005,pp.156–165.)。同样的[5],[6]也说明了双向增长算法的搜索空间比原来OMMPR算法的搜索空间要小许多。
在双向增长算法的基础上,我们引入A星策略优化。为了使用A星策略,我们需要找到一个OMMPR查询花费的下界。
首先,我们引入一个方法来计算一些构造下界时所需的量。这些量需要在搜索之前被计算出来。特别地,对于所有的
Figure PCTCN2016082316-appb-000037
且x,y∈X,我们称(x,y,X)为一个状态,表示一条从x出发,到y结束,并且穿过集合X中所有节点的路径。令C(x.y,X)为状态(x,y,X)的最优花费。明显地,这个花费C(x,y,X)可以通过动态规划求出。特别地,对于任意的
Figure PCTCN2016082316-appb-000038
且x,y∈X,该动态规划的状态转移方程为:
Figure PCTCN2016082316-appb-000039
对于所有的u∈U,我们初始化C(u,u,{u})=0。该方程的含义是:每一个状态(x,y,X)的最优路径可以由它的最优子路径(x,v,X-{y})扩展每一个v∈X-{y}。基于上面的方程,我们可以使用动态规划来求解所有的C(x,y,X),对于所有的
Figure PCTCN2016082316-appb-000040
且x,y∈X。我们称该算法为全集合路径算法。
全集合路径算法的详细过程如下所示:
输入:图G=(V,E,W),点集U,α,出发点s,目的点t。
输出:集合C(x,y,X)。
(1)初始化队列Q和集合D,对于所有的u∈U,将初始状态((u,u,{u}),0)加入队列Q。
(2)当队列Q不为空时重复以下步骤
(2.1)弹出队列Q中第一个元素((x,y,X),cost);
(2.2)将cost赋值给状态C(x,y,X);
(2.3)将状态(x,y,X)加入集合D;
(2.4)对于集合U-X里的所有点v循环
(2.4.1)将集合X∪{v}赋值给临时变量集合X'
(2.4.2)将cost的值加上点v到点y的距离并赋值给临时变量cost'。
(2.4.3)如果新的状态(x,y,X')存在于集合D中,则跳过本次循环继续。
(2.4.4)如果新的状态(x,y,X')不属于队列Q,则将其加入队列Q。
(2.4.5)如果新的cost'比原来队列Q中的相应状态的cost要小,则更新队列Q中该状态的cost值。
计算出所有的C(x,y,X)后,我们可以给出OMMPR问题的花费的一个下界。
先来考虑对于给定的Q=(s,t,U,α),α>1/3的情况。令P'=((v,X),cost为OMMPR算法的一个从出发点s到点v的局部结果,且令X'=U-X,令
Figure PCTCN2016082316-appb-000041
为经过X'中所有顶点的最优v~t路径,即:
Figure PCTCN2016082316-appb-000042
则对于任何的局部结果P',我们都可以算出从状态(v,X)到状态(t,U)的最优花费的下界
Figure PCTCN2016082316-appb-000043
Figure PCTCN2016082316-appb-000044
相应地,在反方向,即从状态
Figure PCTCN2016082316-appb-000045
出发,到状态(s,U)结束的算法,对于局部结果P'=((v,X),cost),可以求出下界:
Figure PCTCN2016082316-appb-000046
其中,X'=U-X,c(P)=minx,y∈X'{dist(s,x)+C(x,y,X')+dist(y,v)}。
对于给定的Q=(s,t,U,α),当α≤1/3时,OMMPR问题的最优解为:α×minx∈U,y∈U(dist(x,y)+C(x,y,U)+dist(y,t))。
基于上述全集合路径算法,本发明实现最优多会合点路径搜索的详细过程如下所示:
输入:图G=(V,E,W),点集U,α,出发点s,目的点t。
输出:最小花费。
(1)使用全集合路径算法计算C(x,y,U),其中x,y∈U;
(2)当
Figure PCTCN2016082316-appb-000047
时,返回α×minx∈U,y∈U(dist(s,x)+C(x,y,U)+dist(y,t));
(3)求出从s到t的最短路径P';
(4)计算
Figure PCTCN2016082316-appb-000048
并赋值给best;
(5)初始化队列Q和集合D,将初始状态
Figure PCTCN2016082316-appb-000049
Figure PCTCN2016082316-appb-000050
加入队列Q。其中lb()是计算下界(lower bound)的操作,其结果lb是队列Q的优先序。
(6)当队列Q不为空时重复以下步骤
(6.1)弹出队列Q中第一个元素((label,v,X),cost,lb);
(6.2)将label'标记为label的相反方向;
(6.3)X'为U-X;
(6.4)当v=label'且X=U的时候,返回当前的cost;
(6.5)将状态((label,v,X),cost)加入集合D;
(6.6)对于集合E里的所有(v,u)边循环
(6.6.1)计算cost+α×w(v,u)并赋值给cost';
(6.6.2)更新(Q,D,best,label',X',(label,u,X),cost');
(6.7)对于集合U-X里的所有x点循环
(6.7.1)计算cost+(1-α)×dist(x,v)并赋值给cost';
(6.7.2)更新(Q,D,best,label',X'-{x},(label,v,X∪{x}),cost');
(7)所有上述循环结束还没有找到最优解,则返回∞。
上述步骤(6.6.2)中,更新(Q,D,best,label',X',(label,v,X),cost)的操作如下:
当状态(label,v,X)∈D时,直接返回;
计算lb((label,v,X),label',X',cost,D)并赋值给lb;
当lb≥best时,直接返回;
当状态
Figure PCTCN2016082316-appb-000051
时,将状态((label,v,X),cost,lb)压入队列Q;
当lb小于队列Q中状态(label,v,X)的下界Q.lb((label,v,X))时,同时更新该状态的cost和lb,Q.update((label,v,X),cost,lb);
当(label',v,X')∈D且D.cost((label',v,X'))+cost<best时,计算
Figure PCTCN2016082316-appb-000052
赋值给best。
上述步骤(5)中,计算下界(lower bound,lb)的操作如下:
当(label',v,X')∈D时,返回cost+D.cost((label',v,X'));
当label=s时,即前向增长:
Figure PCTCN2016082316-appb-000053
则计算minx∈X',y∈X'{dist(v,x)+C(x,y,X')+dist(y,t)}赋值给变量c,并返回
Figure PCTCN2016082316-appb-000054
否则直接返回cost+α×dist(v,t);
否则,即反向增长:
Figure PCTCN2016082316-appb-000055
则计算minx∈X',y∈X'{dist(s,x)+C(x,y,X')+dist(y,v)}赋值给变量c,并返回
Figure PCTCN2016082316-appb-000056
否则直接返回cost+α×dist(s,v);
在上面的算法中,我们定义了状态(label,v,X),并用元组((label,v,X),cost,lb)来表示,这里的cost=f(v,X),表示从点label出发,到点v结束,考虑查询集合X的 OMMPR问题的花费,lb是总花费的下界。在该算法里,我们使用了一个优先队列Q来保存中间结果,从而实现A*的策略。Q中的每一个元素都是一个元组((label,v,X),cost,lb)。在优先队列Q中,每个元素((label,v,X),cost,lb)中的lb为优先序,lb最小的元素始终在队首。队列Q有三个操作,分别为弹出(pop),压入(push)和更新(update)。弹出操作将队首元素也就是lb最小的元素从队列中出队。压入操作将一个元素压入队列当中。更新操作更新队列中一个元素的cost和lb,并且调整该队列,使得其保持优先顺序。算法中还使用了一个集合D来保存已经被计算过的状态。
相应地,本发明还提供了一种最优多会合点路径搜索装置,包括:
搜索信息输入单元:用于获取路径搜索预设信息,包括:图G=(V,E,W),点集U,α,出发点s,目的点t;
路径搜索单元:用于根据路径搜索预设信息,通过上述搜索方法,搜索在所述图G中从出发点s到目的点t的最优路径;
搜索结果输出单元:用于输出显示最优路径;显示的方式可根据用户的使用习惯或者个性化需求采用不同的多种方式。
上述最优多会合点路径搜索装置可应用于各种移动终端,具体可以为移动电话、智能电话、笔记本电脑、个人数字助理、平板电脑,只要安装有实时合乘应用的终端均可使用本装置。
下面,将描述通过一实例来说明本发明的具体实现过程。考察错误!未找到引用源。所示的示例图,假设s=v1,t=v10,α=1/2,U={v6}。首先,该算法预计算C(v6,v6,{v6}),其结果为0。随后,该算法找出从v1到v10的最短路径,即(v1,v4,v5,v9,v10),并且将best初始化为7/2。然后,该算法计算状态
Figure PCTCN2016082316-appb-000057
和状态
Figure PCTCN2016082316-appb-000058
的下界,结果均为11/4。再然后,该算法将状态
Figure PCTCN2016082316-appb-000059
和状态
Figure PCTCN2016082316-appb-000060
加入队列Q。在第一次迭代中,该算法从队列Q中弹出状态
Figure PCTCN2016082316-appb-000061
并进行前向扩展状态
Figure PCTCN2016082316-appb-000062
于是生成了4个元素,
Figure PCTCN2016082316-appb-000063
Figure PCTCN2016082316-appb-000064
和((s,v1,{v6}),3/2,7/2)。由于状态
Figure PCTCN2016082316-appb-000065
和状态 (s,v1,{v6})的下界比best大,所以被排除。所以将元素
Figure PCTCN2016082316-appb-000066
Figure PCTCN2016082316-appb-000067
加入队列Q。在第二轮迭代中,该算法弹出下界最小的元素
Figure PCTCN2016082316-appb-000068
然后重复以上的步骤。反复进行迭代,我们可以得出最优的结果为f(Pst)=3。
以上所述仅为本发明的较佳实施例而已,并不用以限制本发明,凡在本发明的精神和原则之内所作的任何修改、等同替换和改进等,均应包含在本发明的保护范围之内。

Claims (6)

  1. 一种基于A星策略的最优多会合点路径搜索方法,其特征在于,该方法包括:
    首先,获取路径搜索预设信息,包括:图G=(V,E,W),点集U,α,出发点s,目的点t;其中,V、E和W分别为点集、边集和权值的集合;
    Figure PCTCN2016082316-appb-100001
    为顶点的子集;参数α∈(0,1),用于平衡图G上s~t路径Pst和U中的点到路径Pst之间的距离和的比重;然后,再执行以下步骤:
    (1)使用全集合路径算法计算C(x,y,U),其中x,y∈U;
    所述C(x,y,U)为状态(x,y,X)的最优花费,状态(x,y,X)表示一条从x出发、到y结束并且穿过集合X中所有节点的路径,其中的
    Figure PCTCN2016082316-appb-100002
    且x,y∈X;
    (2)当
    Figure PCTCN2016082316-appb-100003
    时,返回
    Figure PCTCN2016082316-appb-100004
    (3)求出从s到t的最短路径P';
    (4)计算
    Figure PCTCN2016082316-appb-100005
    并赋值给best,该best为已经计算过的最优路径的花费;
    (5)初始化队列Q和集合D,将初始状态
    Figure PCTCN2016082316-appb-100006
    Figure PCTCN2016082316-appb-100007
    加入队列Q,其中lb()是计算下界的操作,其结果lb是队列Q的优先序;
    (6)当队列Q不为空时重复以下步骤:
    (6.1)弹出队列Q中第一个元素((label,v,X),cost,lb);
    (6.2)将label'标记为label的相反方向;
    (6.3)X'为U-X;
    (6.4)当v=label'且X=U的时候,返回当前的cost;
    (6.5)将状态((label,v,X),cost)加入集合D;
    (6.6)对于集合E里的所有(v,u)边循环:
    (6.6.1)计算cost+α×w(v,u)并赋值给cost';
    (6.6.2)更新(Q,D,best,label',X',(label,u,X),cost');
    (6.7)对于集合U-X里的所有x点循环:
    (6.7.1)计算cost+(1-α)×dist(x,v)并赋值给cost';
    (6.7.2)更新(Q,D,best,label',X'-{x},(label,v,X∪{x}),cost');
    (7)所有上述循环结束还没有找到最优解,则返回∞。
  2. 如权利要求1所述的基于A星策略的最优多会合点路径搜索方法,其特征在于,所述步骤(1)中,使用全集合路径算法计算C(x,y,U)的方法为:
    (A)初始化队列Q和集合D,对于所有的u∈U,将初始状态((u,u,{u}),0)加入队列Q。
    (B)当队列Q不为空时重复以下步骤:
    (B.1)弹出队列Q中第一个元素((x,y,X),cost);
    (B.2)将cost赋值给状态C(x,y,X);
    (B.3)将状态(x,y,X)加入集合D;
    (B.4)对于集合U-X里的所有点v循环:
    (B.4.1)将集合X∪{v}赋值给临时变量集合X';
    (B.4.2)将cost的值加上点v到点y的距离并赋值给临时变量cost';
    (B.4.3)如果新的状态(x,y,X')存在于集合D中,则跳过本次循环继续;
    (B.4.4)如果新的状态(x,y,X')不属于队列Q,则将其加入队列Q;
    (B.4.5)如果新的cost'比原来队列Q中的相应状态的cost要小,则更新队列Q中该状态的cost值。
  3. 如权利要求1所述的基于A星策略的最优多会合点路径搜索方法,其 特征在于,所述步骤(5)中,计算下界(lower bound)的操作方法为:
    当(label',v,X')∈D时,返回cost+D.cost((label',v,X'));
    当label=s时,即前向增长:
    Figure PCTCN2016082316-appb-100008
    则计算
    Figure PCTCN2016082316-appb-100009
    赋值给变量c,并返回
    Figure PCTCN2016082316-appb-100010
    否则直接返回cost+α×dist(v,t);
    否则,即反向增长:
    Figure PCTCN2016082316-appb-100011
    则计算
    Figure PCTCN2016082316-appb-100012
    赋值给变量c,并返回
    Figure PCTCN2016082316-appb-100013
    否则直接返回cost+α×dist(s,v)。
  4. 如权利要求1所述的基于A星策略的最优多会合点路径搜索方法,其特征在于,所述步骤(6.6.2)中,更新(Q,D,best,label',X',(label,u,X),cost')的方法为:
    当状态(label,v,X)∈D时,直接返回;
    计算lb((label,v,X),label',X',cost,D)并赋值给lb;
    当lb≥best时,直接返回;
    当状态
    Figure PCTCN2016082316-appb-100014
    时,将状态((label,v,X),cost,lb)压入队列Q;
    当lb小于队列Q中状态(label,v,X)的下界Q.lb((label,v,X))时,同时更新该状态的cost和lb,Q.update((label,v,X),cost,lb);
    当(label',v,X')∈D且D.cost((label',v,X'))+cost<best时,计算D.cost((label',v,X'))+cost并赋值给best。
  5. 一种基于A星策略的最优多会合点路径搜索装置,适用于移动终端,其特征在于,所述装置包括:
    搜索信息输入单元:用于获取路径搜索预设信息,包括:图G=(V,E,W),点集U,α,出发点s,目的点t;其中,V、E和W分别为点集、边集和权值的集合;
    Figure PCTCN2016082316-appb-100015
    为顶点的子集;参数α∈(0,1),用于平衡路径Pst和U中的点到Pst之 间的距离和的比重;
    路径搜索单元:用于根据所述路径搜索预设信息,通过如权利要求1至4任一所述方法,搜索在所述图G中从出发点s到目的点t的最优路径;
    搜索结果输出单元:用于输出显示所述路径搜索单元所搜索到的最优路径。
  6. 如权利要求5所述的基于A星策略的最优多会合点路径搜索装置,其特征在于,所述移动终端包括:移动电话、智能电话、笔记本电脑、个人数字助理、平板电脑。
PCT/CN2016/082316 2015-12-30 2016-05-17 一种基于a星策略的最优多会合点路径搜索方法及装置 WO2017113569A1 (zh)

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201511018390.6A CN105678054B (zh) 2015-12-30 2015-12-30 一种基于a星策略的最优多会合点路径搜索方法及装置
CN201511018390.6 2015-12-30

Publications (1)

Publication Number Publication Date
WO2017113569A1 true WO2017113569A1 (zh) 2017-07-06

Family

ID=56297953

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2016/082316 WO2017113569A1 (zh) 2015-12-30 2016-05-17 一种基于a星策略的最优多会合点路径搜索方法及装置

Country Status (2)

Country Link
CN (1) CN105678054B (zh)
WO (1) WO2017113569A1 (zh)

Cited By (12)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109978245A (zh) * 2019-03-15 2019-07-05 中国科学技术大学 一种基于预估的以用时最短为指标的导弹车调度方法
CN109974732A (zh) * 2019-03-28 2019-07-05 东北大学 一种基于语义感知的Top-k多请求路径规划方法
CN111190711A (zh) * 2019-12-13 2020-05-22 南京理工大学 Bdd结合启发式a*搜索的多机器人任务分配方法
CN111209095A (zh) * 2019-08-20 2020-05-29 杭州电子科技大学 一种dag并行任务调度中基于树搜索的剪枝方法
CN111538351A (zh) * 2020-05-15 2020-08-14 中国人民解放军国防科技大学 最优航路点计算方法、系统及计算航路点能量值的模型
CN113075479A (zh) * 2021-03-26 2021-07-06 中国人民解放军海军航空大学航空作战勤务学院 用于低频信号连接的路径搜索算法
CN113093736A (zh) * 2021-03-17 2021-07-09 湖南格兰博智能科技有限责任公司 一种适用于扫地机的低成本芯片寻路算法
CN113485360A (zh) * 2021-07-29 2021-10-08 福州大学 基于改进搜索算法的agv机器人路径规划方法及系统
CN113822008A (zh) * 2021-09-29 2021-12-21 东南大学 基于多引脚同时扩散搜索的超大规模集成电路布线方法
CN114705196A (zh) * 2022-06-07 2022-07-05 湖南大学 一种用于机器人的自适应启发式全局路径规划方法与系统
CN115001579A (zh) * 2022-06-01 2022-09-02 中国电建集团西北勘测设计研究院有限公司 一种基于otdr的光纤路径和跳纤端子摸排方法
CN115017376A (zh) * 2022-07-07 2022-09-06 上海勘察设计研究院(集团)有限公司 一种基于图算法的边角网自动搜索方法

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN112347216B (zh) * 2020-11-06 2023-10-31 思创数码科技股份有限公司 一种基于动态路网的初始线路搜索方法

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6477515B1 (en) * 1999-08-11 2002-11-05 The United States Of America As Represented By The Secretary Of The Navy Efficient computation of least cost paths with hard constraints
CN101493329A (zh) * 2008-01-23 2009-07-29 华东师范大学 一种多目标点路径规划方法和装置
CN102156756A (zh) * 2011-05-16 2011-08-17 复旦大学 一种基于图嵌入的在道路网络中查找最优路径的方法
CN104217249A (zh) * 2014-07-02 2014-12-17 浙江工业大学 一种基于时间与费用约束的动态拼车匹配方法
CN104992044A (zh) * 2015-05-26 2015-10-21 深圳大学 应用于实时合乘的最优多会合点路径搜索方法及装置

Family Cites Families (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US20090228198A1 (en) * 2008-03-07 2009-09-10 Microsoft Corporation Selecting landmarks in shortest path computations
US8660789B2 (en) * 2011-05-03 2014-02-25 University Of Southern California Hierarchical and exact fastest path computation in time-dependent spatial networks
CN102901500A (zh) * 2012-09-17 2013-01-30 西安电子科技大学 基于概率a星与智能体混合的飞行器最优路径确定方法
CN103760904B (zh) * 2014-02-13 2016-10-19 北京工业大学 一种语音播报式智能车辆路径规划装置与实施方法
CN104156459B (zh) * 2014-08-20 2016-07-06 焦点科技股份有限公司 一种基于相同开销网格的高效寻路的方法及系统

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6477515B1 (en) * 1999-08-11 2002-11-05 The United States Of America As Represented By The Secretary Of The Navy Efficient computation of least cost paths with hard constraints
CN101493329A (zh) * 2008-01-23 2009-07-29 华东师范大学 一种多目标点路径规划方法和装置
CN102156756A (zh) * 2011-05-16 2011-08-17 复旦大学 一种基于图嵌入的在道路网络中查找最优路径的方法
CN104217249A (zh) * 2014-07-02 2014-12-17 浙江工业大学 一种基于时间与费用约束的动态拼车匹配方法
CN104992044A (zh) * 2015-05-26 2015-10-21 深圳大学 应用于实时合乘的最优多会合点路径搜索方法及装置

Cited By (19)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN109978245A (zh) * 2019-03-15 2019-07-05 中国科学技术大学 一种基于预估的以用时最短为指标的导弹车调度方法
CN109974732A (zh) * 2019-03-28 2019-07-05 东北大学 一种基于语义感知的Top-k多请求路径规划方法
CN109974732B (zh) * 2019-03-28 2022-11-15 东北大学 一种基于语义感知的Top-k多请求路径规划方法
CN111209095B (zh) * 2019-08-20 2023-08-15 杭州电子科技大学 一种dag并行任务调度中基于树搜索的剪枝方法
CN111209095A (zh) * 2019-08-20 2020-05-29 杭州电子科技大学 一种dag并行任务调度中基于树搜索的剪枝方法
CN111190711A (zh) * 2019-12-13 2020-05-22 南京理工大学 Bdd结合启发式a*搜索的多机器人任务分配方法
CN111190711B (zh) * 2019-12-13 2023-06-09 南京理工大学 Bdd结合启发式a*搜索的多机器人任务分配方法
CN111538351A (zh) * 2020-05-15 2020-08-14 中国人民解放军国防科技大学 最优航路点计算方法、系统及计算航路点能量值的模型
CN111538351B (zh) * 2020-05-15 2023-06-06 中国人民解放军国防科技大学 最优航路点计算方法、系统及计算航路点能量值的模型
CN113093736A (zh) * 2021-03-17 2021-07-09 湖南格兰博智能科技有限责任公司 一种适用于扫地机的低成本芯片寻路算法
CN113075479A (zh) * 2021-03-26 2021-07-06 中国人民解放军海军航空大学航空作战勤务学院 用于低频信号连接的路径搜索算法
CN113485360A (zh) * 2021-07-29 2021-10-08 福州大学 基于改进搜索算法的agv机器人路径规划方法及系统
CN113485360B (zh) * 2021-07-29 2023-05-19 福州大学 基于改进搜索算法的agv机器人路径规划方法及系统
CN113822008A (zh) * 2021-09-29 2021-12-21 东南大学 基于多引脚同时扩散搜索的超大规模集成电路布线方法
CN113822008B (zh) * 2021-09-29 2022-11-04 东南大学 基于多引脚同时扩散搜索的超大规模集成电路布线方法
CN115001579A (zh) * 2022-06-01 2022-09-02 中国电建集团西北勘测设计研究院有限公司 一种基于otdr的光纤路径和跳纤端子摸排方法
CN115001579B (zh) * 2022-06-01 2024-01-19 中国电建集团西北勘测设计研究院有限公司 一种基于otdr的光纤路径和跳纤端子摸排方法
CN114705196A (zh) * 2022-06-07 2022-07-05 湖南大学 一种用于机器人的自适应启发式全局路径规划方法与系统
CN115017376A (zh) * 2022-07-07 2022-09-06 上海勘察设计研究院(集团)有限公司 一种基于图算法的边角网自动搜索方法

Also Published As

Publication number Publication date
CN105678054B (zh) 2020-06-30
CN105678054A (zh) 2016-06-15

Similar Documents

Publication Publication Date Title
WO2017113569A1 (zh) 一种基于a星策略的最优多会合点路径搜索方法及装置
WO2016188151A1 (zh) 应用于实时合乘的最优多会合点路径搜索方法及装置
Gao et al. An independent set degree condition for fractional critical deleted graphs
US9832068B2 (en) Reachability-based coordination for cyclic dataflow
Hoppe et al. The quickest transshipment problem
WO2018077181A1 (zh) 图中心性计算方法、装置及存储介质
WO2016078368A1 (zh) 一种基于k-核的社区搜索算法
JP6613475B2 (ja) 経路照会方法、装置、デバイス及び不揮発性コンピューター記憶媒体
CN111061763B (zh) 用于生成规则引擎的规则执行计划的方法及装置
Fu et al. Top-k taxi recommendation in realtime social-aware ridesharing services
Gunturi et al. A critical-time-point approach to all-departure-time lagrangian shortest paths
CN107633024B (zh) 多维属性最优点组的快速搜索方法
US20160125095A1 (en) Lightweight temporal graph management engine
CN111626502B (zh) 一种动态城市交通路网的通勤路径规划方法
WO2017113865A1 (zh) 一种大数据增量计算方法和装置
CN104348695A (zh) 一种基于人工免疫系统的虚拟网络映射方法及其系统
WO2015165297A1 (zh) 一种不确定图查询方法及装置
Kolmogorov A faster algorithm for computing the principal sequence of partitions of a graph
Xu et al. Discovery of important crossroads in road network using massive taxi trajectories
CN115629883A (zh) 资源预测方法、装置、计算机设备及存储介质
Baek et al. Efficient single-pair all-shortest-path query processing for massive dynamic networks
JP2004220227A (ja) 遺伝子ネットワーク経路探索装置及び方法並びにプログラム
Htoo et al. Aggregate nearest neighbor search methods using SSMTA* algorithm on road-network
Guo et al. Algorithms for online car-sharing problem
US20220381574A1 (en) Multipath generation method, apparatus, device and storage medium

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 16880377

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205A DATED 15.11.2018)

122 Ep: pct application non-entry in european phase

Ref document number: 16880377

Country of ref document: EP

Kind code of ref document: A1