在SQL Server中实现最短路径搜索的解决方法
开始
这是去年的问题了,今天在整理邮件的时候才发现这个问题,感觉顶有意思的,特记录下来。
在表relationgraph中,有三个字段(id,node,relatednode),其中node和relatednode两个字段描述两个节点的连接关系;现在要求,找出从节点"p"至节点"j",最短路径(即经过的节点最少)。
图1.
解析:
了能够更好的描述表relationgraph中字段node和 relatednode的关系,我在这里特意使用一个图形来描述,
如图2.
图2.
在图2,可清晰的看出各个节点直接如何相连,也可以清楚的看出节点"p"至节点"j"的的几种可能路径。
从上面可以看出第2种可能路径,经过的节点最少。
为了解决开始的问题,我参考了两种方法,
第1方法是,
参考单源最短路径算法:dijkstra(迪杰斯特拉)算法,主要特点是以起始点为中心向外层层扩展,直到扩展到终点为止。
图3.
第2方法是,
针对第1种方法的改进,就是采用多源点方法,这里就是以节点"p"和节点"j"为中心向外层扩展,直到两圆外切点,如图4. :
图4.
实现:
在接下来,我就描述在sql server中,如何实现。当然我这里采用的前面说的第2种方法,以"p"和"j"为始点像中心外层层扩展。
这里提供有表relactiongraph的create& insert数据的脚本:
use testdb
go
if object_id('relactiongraph') is not null drop table relactiongraph
create table relactiongraph(id int identity,item nvarchar(50),relactionitem nvarchar(20),constraint pk_relactiongraph primary key(id))
go
create nonclustered index ix_relactiongraph_item on relactiongraph(item) include(relactionitem)
create nonclustered index ix_relactiongraph_relactionitem on relactiongraph(relactionitem) include(item)
go
insert into relactiongraph (item, relactionitem ) values
('a','b'),('a','c'),('a','d'),('a','e'),
('b','f'),('b','g'),('b','h'),
('c','i'),('c','j'),
('f','k'),('f','l'),
('k','o'),('k','p'),
('o','i'),('o','l')
go
编写一个存储过程up_getpath
use testdb
go
--procedure:
if object_id('up_getpath') is not null
drop proc up_getpath
go
create proc up_getpath
(
@node nvarchar(50),
@relatednode nvarchar(50)
)
as
set nocount on
declare
@level smallint =1, --当前搜索的深度
@maxlevel smallint=100, --最大可搜索深度
@node_whileflag bit=1, --以@node作为中心进行搜索时候,作为能否循环搜索的标记
@relatednode_whileflag bit=1 --以@relatednode作为中心进行搜索时候,作为能否循环搜索的标记
--如果直接找到两个node存在直接关系就直接返回
if exists(select 1 from relationgraph where (node=@node and relatednode=@relatednode) or (node=@relatednode and relatednode=@node) ) or @node=@relatednode
begin
select convert(nvarchar(2000),@node + ' --> '+ @relatednode) as relationgraphpath,convert(smallint,0) as stopcount
return
end
--
if object_id('tempdb..#1') is not null drop table #1 --临时表#1,存储的是以@node作为中心向外扩展的各节点数据
if object_id('tempdb..#2') is not null drop table #2 --临时表#2,存储的是以@relatednode作为中心向外扩展的各节点数据
create table #1(
node nvarchar(50),--相对源点
relatednode nvarchar(50), --相对目标
level smallint --深度
)
create table #2(node nvarchar(50),relatednode nvarchar(50),level smallint)
insert into #1 ( node, relatednode, level )
select node, relatednode, @level from relationgraph a where a.node =@node union --正向:以@node作为源查询
select relatednode, node, @level from relationgraph a where a.relatednode = @node --反向:以@node作为目标进行查询
set @node_whileflag=sign(@@rowcount)
insert into #2 ( node, relatednode, level )
select node, relatednode, @level from relationgraph a where a.node =@relatednode union --正向:以@relatednode作为源查询
select relatednode, node, @level from relationgraph a where a.relatednode = @relatednode --反向:以@relatednode作为目标进行查询
set @relatednode_whileflag=sign(@@rowcount)
--如果在表relationgraph中找不到@node 或 @relatednode 数据,就直接跳过后面的while过程
if not exists(select 1 from #1) or not exists(select 1 from #2)
begin
goto while_out
end
while not exists(select 1 from #1 a inner join #2 b on b.relatednode=a.relatednode) --判断是否出现切点
and (@node_whileflag|@relatednode_whileflag)>0 --判断是否能搜索
and @level<@maxlevel --控制深度
begin
if @node_whileflag >0
begin
insert into #1 ( node, relatednode, level )
--正向
select a.node,a.relatednode,@level+1
from relationgraph a
where exists(select 1 from #1 where relatednode=a.node and level=@level) and
not exists(select 1 from #1 where node=a.node)
union
--反向
select a.relatednode,a.node,@level+1
from relationgraph a
where exists(select 1 from #1 where relatednode=a.relatednode and level=@level) and
not exists(select 1 from #1 where node=a.relatednode)
set @node_whileflag=sign(@@rowcount)
end
if @relatednode_whileflag >0
begin
insert into #2 ( node, relatednode, level )
--正向
select a.node,a.relatednode,@level+1
from relationgraph a
where exists(select 1 from #2 where relatednode=a.node and level=@level) and
not exists(select 1 from #2 where node=a.node)
union
--反向
select a.relatednode,a.node,@level+1
from relationgraph a
where exists(select 1 from #2 where relatednode=a.relatednode and level=@level) and
not exists(select 1 from #2 where node=a.relatednode)
set @relatednode_whileflag=sign(@@rowcount)
end
select @level+=1
end
while_out:
--下面是构造返回的结果路径
if object_id('tempdb..#path1') is not null drop table #path1
if object_id('tempdb..#path2') is not null drop table #path2
;with cte_path1 as
(
select a.node,a.relatednode,level,convert(nvarchar(2000),a.node+' -> '+a.relatednode) as relationgraphpath,convert(smallint,1) as pathlevel from #1 a where exists(select 1 from #2 where relatednode=a.relatednode)
union all
select b.node,a.relatednode,b.level,convert(nvarchar(2000),b.node+' -> '+a.relationgraphpath) as relationgraphpath ,convert(smallint,a.pathlevel+1) as pathlevel
from cte_path1 a
inner join #1 b on b.relatednode=a.node
and b.level=a.level-1
)
select * into #path1 from cte_path1
;with cte_path2 as
(
select a.node,a.relatednode,level,convert(nvarchar(2000),a.node) as relationgraphpath,convert(smallint,1) as pathlevel from #2 a where exists(select 1 from #1 where relatednode=a.relatednode)
union all
select b.node,a.relatednode,b.level,convert(nvarchar(2000),a.relationgraphpath+' -> '+b.node) as relationgraphpath ,convert(smallint,a.pathlevel+1)
from cte_path2 a
inner join #2 b on b.relatednode=a.node
and b.level=a.level-1
)
select * into #path2 from cte_path2
;with cte_result as
(
select a.relationgraphpath+' -> '+b.relationgraphpath as relationgraphpath,a.pathlevel+b.pathlevel -1 as stopcount,rank() over(order by a.pathlevel+b.pathlevel) as result_row
from #path1 a
inner join #path2 b on b.relatednode=a.relatednode
and b.level=1
where a.level=1
)
select distinct relationgraphpath,stopcount from cte_result where result_row=1
go
上面的存储过程,主要分为两大部分,第1部分是实现如何搜索,第2部分实现如何构造返回结果。其中第1部分的代码根据前面的方法2,通过@node 和 @relatednode 两个节点向外层搜索,每次搜索返回的节点都保存至临时表#1和#2,再判断临时表#1和#2有没有出现切点,如果出现就说明已找到最短的路径(经过多节点数最少),否则就继续循环搜索,直到循环至最大的搜索深度(@maxlevel smallint=100)或找到切点。要是到100层都没搜索到切点,将放弃搜索。这里使用最大可搜索深度@maxlevel,目的是控制由于数据量大可能会导致性能差,因为在这里数据量与搜索性能成反比。代码中还说到一个正向和反向搜索,主要是相对node 和 relatednode来说,它们两者互为参照对象,进行向外搜索使用。
下面是存储过程的执行:
use testdb
go
exec dbo.up_getpath
@node = 'p',
@relatednode = 'j'
go
你可以根据需要来,赋予@node 和 @relatednode不同的值。
拓展:
前面的例子,可扩展至城市的公交路线,提供两个站点,搜索经过这两个站点最少站点公交路线;可以扩展至社区的人际关系的搜索,如一个人与另一个人想认识,那么他们直接要经过多少个人才可以。除了人与人直接有直接的朋友、亲戚关联,还可以通过人与物有关联找到人与人关联,如几个作家通过出版一个本,那么就说明这几个人可以通过某一本书的作者列表中找到他们存在共同出版书籍的关联,这为搜索两个人认识路径提供参考。这问题可能会非常大复杂,但可以这样的扩展。
小结:
这里只是找两个节点的所有路径中,节点数最少的路径,在实际的应用中,可能会碰到比这里更复杂的情况。在其他的环境或场景可能会带有长度,时间,多节点,多作用域等一些信息。无论如何,一般都要参考一些原理,算法来实现。