期刊文献+
共找到332篇文章
< 1 2 17 >
每页显示 20 50 100
Optimizing Connections:Applied Shortest Path Algorithms for MANETs
1
作者 Ibrahim Alameri Jitka Komarkova +2 位作者 Tawfik Al-Hadhrami Abdulsamad Ebrahim Yahya Atef Gharbi 《Computer Modeling in Engineering & Sciences》 SCIE EI 2024年第10期787-807,共21页
This study is trying to address the critical need for efficient routing in Mobile Ad Hoc Networks(MANETs)from dynamic topologies that pose great challenges because of the mobility of nodes.Themain objective was to del... This study is trying to address the critical need for efficient routing in Mobile Ad Hoc Networks(MANETs)from dynamic topologies that pose great challenges because of the mobility of nodes.Themain objective was to delve into and refine the application of the Dijkstra’s algorithm in this context,a method conventionally esteemed for its efficiency in static networks.Thus,this paper has carried out a comparative theoretical analysis with the Bellman-Ford algorithm,considering adaptation to the dynamic network conditions that are typical for MANETs.This paper has shown through detailed algorithmic analysis that Dijkstra’s algorithm,when adapted for dynamic updates,yields a very workable solution to the problem of real-time routing in MANETs.The results indicate that with these changes,Dijkstra’s algorithm performs much better computationally and 30%better in routing optimization than Bellman-Ford when working with configurations of sparse networks.The theoretical framework adapted,with the adaptation of the Dijkstra’s algorithm for dynamically changing network topologies,is novel in this work and quite different from any traditional application.The adaptation should offer more efficient routing and less computational overhead,most apt in the limited resource environment of MANETs.Thus,from these findings,one may derive a conclusion that the proposed version of Dijkstra’s algorithm is the best and most feasible choice of the routing protocol for MANETs given all pertinent key performance and resource consumption indicators and further that the proposed method offers a marked improvement over traditional methods.This paper,therefore,operationalizes the theoretical model into practical scenarios and also further research with empirical simulations to understand more about its operational effectiveness. 展开更多
关键词 dijkstras algorithm optimization complexity analysis shortest path first comparative algorithm analysis nondeterministic polynomial(NP)-complete
下载PDF
基于Dijkstra算法的移动机器人最短路径规划设计研究
2
作者 靳康杰 《信息与电脑》 2024年第8期47-49,共3页
本研究针对移动机器人的路径规划问题,结合Dijkstra算法进行了深入探讨。设计了一套针对移动机器人的最短路径规划系统,该系统全面考虑了机器人的运动约束、环境信息以及目标位置等关键因素。在此基础上,提出了一种基于Dijkstra算法的... 本研究针对移动机器人的路径规划问题,结合Dijkstra算法进行了深入探讨。设计了一套针对移动机器人的最短路径规划系统,该系统全面考虑了机器人的运动约束、环境信息以及目标位置等关键因素。在此基础上,提出了一种基于Dijkstra算法的路径规划方案,旨在实现高效且精准的路径规划,为移动机器人的自主导航提供有力支持。 展开更多
关键词 移动机器人 最短路径规划 dijkstra算法 自主导航
下载PDF
An Algorithm to Find K Shortest Path 被引量:1
3
作者 Gangming Sun Pin Wang 《International English Education Research》 2014年第10期54-57,共4页
In this figure, it finds a vertex to another vertex k shortest path algorithm. Provided there are n vertices and edges in the diagram. If the path loops, the time complexity of the algorithm is allowed O(w + n log 2... In this figure, it finds a vertex to another vertex k shortest path algorithm. Provided there are n vertices and edges in the diagram. If the path loops, the time complexity of the algorithm is allowed O(w + n log 2 n + kw log 2 k). If the request path does not contain the loop, the time complexity of the algorithm O(kn(w + n log2 n)+ kw log2 k). The algorithm utilizes a simple extension of the Dijkstra algorithm determined the end of the length of the shortest path to the other vertices, and then, based on these data, branch and bound method to identify the required path. Experimental results show that the actual running time has relations with the structure of FIG. 展开更多
关键词 Branch and Bound shortest path dijkstra algorithm Fibonacei Heap
下载PDF
一种基于Dijkstra的物流配送路径优化算法设计 被引量:6
4
作者 先梦瑜 《电子设计工程》 2023年第2期20-24,共5页
在物流配送过程中,物流配送路径的选择是决定快递时效的关键因素。针对传统Dijkstra算法在大规模数据求解过程中效率低、耗时长的问题,文中对其进行了深入的改进和优化。在算法运行过程中,通过使用多标号模型对遍历过程进行了优化。同时... 在物流配送过程中,物流配送路径的选择是决定快递时效的关键因素。针对传统Dijkstra算法在大规模数据求解过程中效率低、耗时长的问题,文中对其进行了深入的改进和优化。在算法运行过程中,通过使用多标号模型对遍历过程进行了优化。同时,在运算过程中采用并行求解的模式来提升模型处理速度。实验测试结果表明,文中设计的路径优化算法相比传统Dijkstra算法,大规模数据的求解时间缩减了50%以上,算法并行加速比在大规模数据求解时达到了1.75倍,证明了所提算法的并行求解效率较高,具有良好的工程应用价值。 展开更多
关键词 最短路径求解 dijkstra算法 多标号算法 并行求解 物流配送路径 图论
下载PDF
Design and Implementation of Bidirectional Dijkstra Algorithm 被引量:5
5
作者 付梦印 李杰 周培德 《Journal of Beijing Institute of Technology》 EI CAS 2003年第4期366-370,共5页
Bidirectional Dijkstra algorithm whose time complexity is 8O(n~2) is proposed. The theory foundation is that the classical Dijkstra algorithm has not any directional feature during searching the shortest path. The alg... Bidirectional Dijkstra algorithm whose time complexity is 8O(n~2) is proposed. The theory foundation is that the classical Dijkstra algorithm has not any directional feature during searching the shortest path. The algorithm takes advantage of the adjacent link and the mechanism of bidirectional search, that is, the algorithm processes the positive search from start point to destination point and the negative search from destination point to start point at the same time. Finally, combining with the practical application of route-planning algorithm in embedded real-time vehicle navigation system (ERTVNS), one example of its practical applications is given, analysis in theory and the experimental results show that compared with the Dijkstra algorithm, the new algorithm can reduce time complexity, and guarantee the searching precision, it satisfies the needs of ERTVNS. 展开更多
关键词 vehicle navigation system route-planning the shortest path dijkstra algorithm bidirectional dijkstra algorithm
下载PDF
The Shortest Path Analysis Based on Road Network 被引量:1
6
作者 Chaozheng DU 《Asian Agricultural Research》 2017年第6期98-100,共3页
Rational planning of agricultural product transport route from initial node to destination node can effectively reduce the cost price of agricultural products,and the calculation of shortest path between any two point... Rational planning of agricultural product transport route from initial node to destination node can effectively reduce the cost price of agricultural products,and the calculation of shortest path between any two points also affects people’s daily travel.Taking Heze Railway Station to Heze College for example,with remote sensing image data as the base map,we conduct vectorization and topological analysis on roads in the target area.With Dijkstra as theoretical basis of shortest path algorithm,we use ArcG IS network analysis method to build road network,and calculate the planning program of the shortest distance path,the shortest path by driving and the shortest path by walking. 展开更多
关键词 shortest path dijkstras algorithm Road network model Network analysis
下载PDF
Application of Dijkstra Algorithm to Proposed Tramway of a Potential World Class University
7
作者 M. C. Agarana N. C. Omoregbe M. O. Ogunpeju 《Applied Mathematics》 2016年第6期496-503,共8页
Nowadays, the development of “smart cities” with a high level of quality of life is becoming a prior challenge to be addressed. In this paper, promoting the model shift in railway transportation using tram network t... Nowadays, the development of “smart cities” with a high level of quality of life is becoming a prior challenge to be addressed. In this paper, promoting the model shift in railway transportation using tram network towards more reliable, greener and in general more sustainable transportation modes in a potential world class university is proposed. “Smart mobility” in a smart city will significantly contribute to achieving the goal of a university becoming a world class university. In order to have a regular and reliable rail system on campus, we optimize the route among major stations on campus, using shortest path problem Dijkstra algorithm in conjunction with a computer software called LINDO to arrive at the optimal route. In particular, it is observed that the shortest path from the main entrance gate (Canaan land entrance gate) to the Electrical Engineering Department is of distance 0.805 km. 展开更多
关键词 Potential World Class University OPTIMIZATION dijkstra algorithm shortest path Tramway
下载PDF
Dijkstra及基于Dijkstra的前N条最短路径算法在智能交通系统中的应用 被引量:41
8
作者 王峰 游志胜 +2 位作者 曼丽春 高燕 汤丽萍 《计算机应用研究》 CSCD 北大核心 2006年第9期203-205,208,共4页
介绍了D ijkstra算法在智能交通系统的套牌车查询子系统中的应用;分析指出了文献[1]中算法存在的问题;通过对此算法的改进,完善了基于D ijkstra算法的前N条最短路径算法。通过实验及实际应用对改进后的算法进行了验证。
关键词 dijkstra算法 智能交通 前N条最短路径
下载PDF
Dijkstra的一种改进算法 被引量:28
9
作者 孙强 沈建华 顾君忠 《计算机工程与应用》 CSCD 北大核心 2002年第3期99-101,共3页
在Dijkstra算法的基础上,该算法使用了一些独特的数据结构(如:前趋表和最短路径表);使用该算法能高效率地求出图中一个顶点到其它各顶点的所有最短路径。用C语言设计了相应程序验证了此算法。
关键词 dijkstra算法 数据结构 算法 图论
下载PDF
基于Dijkstra算法的电网故障行波定位方法 被引量:18
10
作者 李泽文 唐平 +2 位作者 曾祥君 肖仁平 赵廷 《电力系统自动化》 EI CSCD 北大核心 2018年第18期162-168,共7页
为避免电网故障行波定位方法中环网的复杂解网运算,提出了一种基于Dijkstra算法的电网故障行波定位新方法。该方法在电网中某条输电线路故障后,在所有变电站检测记录初始行波到达时间。然后,利用Dijkstra算法计算最短路径,建立最短路径... 为避免电网故障行波定位方法中环网的复杂解网运算,提出了一种基于Dijkstra算法的电网故障行波定位新方法。该方法在电网中某条输电线路故障后,在所有变电站检测记录初始行波到达时间。然后,利用Dijkstra算法计算最短路径,建立最短路径距离矩阵,并利用最短路径矩阵和初始行波到达时间计算故障距离,建立故障距离矩阵。最后,对故障距离矩阵中的元素进行有效性识别,并综合所有有效故障距离得到精确的故障点位置。仿真结果表明该方法无需复杂环网的解网运算,可有效提高网络定位的可靠性与准确度。 展开更多
关键词 网络定位 行波 dijkstra算法 最短路径
下载PDF
能源互联网中基于Dijkstra算法的分布式电能路由策略的实现 被引量:6
11
作者 江渝 叶泓炜 +3 位作者 张青松 王克 徐志鹏 杨睿 《电网技术》 EI CSCD 北大核心 2017年第7期2071-2078,共8页
电力路由器融合了信息技术和电力电子变换技术,为分布式能源大范围地接入能源互联网提供了条件,但也给能源互联网的优化运行提出了新的要求。以图论为手段,以能源互联网的结构为基础构成单源点单汇点的电能路由拓扑;以Dijkstra为基础,... 电力路由器融合了信息技术和电力电子变换技术,为分布式能源大范围地接入能源互联网提供了条件,但也给能源互联网的优化运行提出了新的要求。以图论为手段,以能源互联网的结构为基础构成单源点单汇点的电能路由拓扑;以Dijkstra为基础,节点仅根据其相邻节点的状态调节其自身状态,搜寻最短路径,完成电能路由,实现电能的分布式管理和协调控制,使系统运行在优化状态。多代理系统(multi-agent system,MAS)技术为实现分布式电能路由策略提供了技术支撑。最后,在Matlab/Simulink平台下搭建了分布式电网,结合基于JADE(Java Agent DEvelopment framework)平台的多代理系统对分布式电能路由策略进行仿真实现。 展开更多
关键词 能源互联网 dijkstra算法 分布式电能路由 最短路径 多代理系统
下载PDF
基于GIS优化Dijkstra算法在物流中心选址中的研究 被引量:14
12
作者 万莉 黄挚雄 李志勇 《计算机应用研究》 CSCD 北大核心 2007年第8期289-291,共3页
基于传统的Dijkstra算法,提出了一种采用二叉堆结构和网络边存储模型的优化Dijkstra算法。实验结果表明:优化后的算法是切实有效的,将其应用到物流中心选址中得到了较满意的选址方案。
关键词 地理信息系统 最短路径 迪克斯特拉算法 二叉堆 优先级队列 物流中心
下载PDF
Dijkstra算法中的多邻接点与多条最短路径问题 被引量:122
13
作者 王树西 李安渝 《计算机科学》 CSCD 北大核心 2014年第6期217-224,共8页
Dijkstra算法是图论中求取最短路径的经典算法。列举并分析了Dijkstra算法及其伪码,为了深刻理解Dijkstra算法,列举了几种错误观点并加以纠正。分析发现,根据Dijkstra算法,最短路径上的某个顶点的前面,可能有多个邻接点;从开始点到某个... Dijkstra算法是图论中求取最短路径的经典算法。列举并分析了Dijkstra算法及其伪码,为了深刻理解Dijkstra算法,列举了几种错误观点并加以纠正。分析发现,根据Dijkstra算法,最短路径上的某个顶点的前面,可能有多个邻接点;从开始点到某个顶点之间,可能存在多条权重相同的最短路径。对于上述多邻接点问题与多条最短路径问题,Dijkstra算法并没有涉及。分析了多邻接点问题与多条最短路径问题的成因,提出解决方案,对Dijkstra算法进行了改进,给出了改进之后的算法与伪码,分析了算法的时间复杂度,并用c语言编码实现。实验结果表明,改进之后的Dijkstra算法可以有效解决多邻接点问题与多条最短路径问题。 展开更多
关键词 dijkstra算法 多邻接点 多条最短路径 时间复杂度
下载PDF
改进的Dijkstra最短路径算法及其应用研究 被引量:92
14
作者 王树西 吴政学 《计算机科学》 CSCD 北大核心 2012年第5期223-228,共6页
求最短路径是一个应用很广泛的问题。求最短路径的算法有很多,公认较好的算法是Dijkstra标号法。但实验结果表明,Dijkstra标号法有需要改进的地方:①其退出机制对不联通的有向图是无效的,会陷入死循环;②没有涉及最短路径上顶点的邻接点... 求最短路径是一个应用很广泛的问题。求最短路径的算法有很多,公认较好的算法是Dijkstra标号法。但实验结果表明,Dijkstra标号法有需要改进的地方:①其退出机制对不联通的有向图是无效的,会陷入死循环;②没有涉及最短路径上顶点的邻接点(特指前面的相邻点)问题;③没有涉及多个顶点同时获得p标号的问题。针对上述问题,对标号法进行了改进。算法实验表明,改进的标号法能够有效解决上述问题。在上述工作的基础上,开发了"北京市道路最优路线选择系统",以提供起点和终点之间的最优路线,帮助用户选择出行路线,使市民能够避过交通最拥堵的路段,节约出行时间。 展开更多
关键词 最短路径 dijkstra标号法 城市交通 最优路线选择
下载PDF
Dijkstra算法的设计与实现 被引量:7
15
作者 计会凤 徐爱功 隋达嵬 《辽宁工程技术大学学报(自然科学版)》 CAS 北大核心 2008年第A01期222-223,共2页
针对地理信息系统中网络分析的一个关键问题——最短路径分析,采用经典的Dijkstra算法,并在VC环境下实现自定义有向图,主要包括结点和边的绘制与修改,以及权重的更改等功能。能够实现几何网络中任意两结点间的最短路径查找。该程序在单... 针对地理信息系统中网络分析的一个关键问题——最短路径分析,采用经典的Dijkstra算法,并在VC环境下实现自定义有向图,主要包括结点和边的绘制与修改,以及权重的更改等功能。能够实现几何网络中任意两结点间的最短路径查找。该程序在单项、双向,以及单双混合网络中都进行了验证,运算结果正确,并具有一定的可行性。 展开更多
关键词 地理信息系统 网络分析 最短路径 dijkstra算法
下载PDF
对Dijkstra算法的优化策略研究 被引量:28
16
作者 陈益富 卢潇 丁豪杰 《计算机技术与发展》 2006年第9期73-75,78,共4页
Dijkstra算法是许多工程解决最短路径问题的理论基础,但实际工程中涉及到的许多限制条件要求人们必须对该算法进行改进和优化。文中在对经典的Dijkstra算法思想进行分析的基础上,论述了Dijkstra算法的一种改进算法———A*算法,并对它... Dijkstra算法是许多工程解决最短路径问题的理论基础,但实际工程中涉及到的许多限制条件要求人们必须对该算法进行改进和优化。文中在对经典的Dijkstra算法思想进行分析的基础上,论述了Dijkstra算法的一种改进算法———A*算法,并对它们之间的联系进行了剖析。在总结了一个实际工程项目开发的基础上,提出了一种基于Dijkstra算法上的针对铁路中两站点最优路径算法。文中提出的算法通过提取出铁路中的关键站点组成一个新图,之后将起点和终点插入到新图中,经过最多四次的排列组合后选出一个最短路径;该优化方法能将Dijkstra算法的时间复杂度o(n2)中的n降到一个很小的值。实践证明该方法在实际工程中完全可行且已取得了令人满意的效果。 展开更多
关键词 最短路径算法 A*算法 dijkstra算法 铁路两站点最优路径
下载PDF
改进Dijkstra算法在大型城市轨道交通网计价系统中的应用 被引量:9
17
作者 谢建平 陈治亚 +2 位作者 邓连波 谢宜斌 杨坤 《国防科技大学学报》 EI CAS CSCD 北大核心 2021年第1期109-116,共8页
随着城市地铁建设的迅猛发展,国内众多城市地铁线路均已实现网络化运营。考虑到地铁票价制定的公益性,目前国内大部分城市均以最短路径或最少车站的方式计算线网两车站间的票价。以传统的Dijkstra算法为基准,对传统的Dijkstra算法进行改... 随着城市地铁建设的迅猛发展,国内众多城市地铁线路均已实现网络化运营。考虑到地铁票价制定的公益性,目前国内大部分城市均以最短路径或最少车站的方式计算线网两车站间的票价。以传统的Dijkstra算法为基准,对传统的Dijkstra算法进行改进,分别采用传统Dijkstra算法和改进Dijkstra算法对长沙地铁1~5号线线网最短距离行走路线进行测算。结果表明,改进后的Dijkstra算法不仅有效地提高了算法的时效性,克服了传统算法时间冗长的缺陷,在一定程度上消除了线路之间累积的误差且提高了线网的可延展性。 展开更多
关键词 长沙地铁1~5号线 城市地铁票价 dijkstra算法 最短路径算法
下载PDF
一种基于Dijkstra的最短路径算法 被引量:31
18
作者 李臣波 刘润涛 《哈尔滨理工大学学报》 CAS 2008年第3期35-37,共3页
介绍了Dijkstra算法,在详细分析了该算法的实现方法以及其缺点的基础上,提出一种基于Dijkstra算法的优化算法-优先队列算法,在搜索最小的节点时,该算法的时间复杂度大大降低,具有较好适用性.
关键词 最短路径 dijkstra算法 优先队列
下载PDF
改进Dijkstra算法在停车诱导系统中的应用与仿真 被引量:18
19
作者 彭红星 解凤玲 《计算机应用》 CSCD 北大核心 2011年第A02期63-66,共4页
主要针对现有大型停车场停车诱导系统的低效率问题,采用Dijkstra算法,将车位选择问题转化为最短路径问题,并结合停车场的特点,对Dijkstra算法进行改进,然后结合实例用VC对改进的算法进行应用仿真。仿真结果表明,改进后的Dijkstra算法比... 主要针对现有大型停车场停车诱导系统的低效率问题,采用Dijkstra算法,将车位选择问题转化为最短路径问题,并结合停车场的特点,对Dijkstra算法进行改进,然后结合实例用VC对改进的算法进行应用仿真。仿真结果表明,改进后的Dijkstra算法比经典算法在时间复杂度上有所降低,Dijkstra算法的搜索效率明显得到提高,在停车诱导系统中具有一定的实际应用价值。 展开更多
关键词 停车诱导系统 最短路径 dijkstra算法
下载PDF
Dijkstra算法在嵌入式GIS中的改进与研究 被引量:15
20
作者 姜代红 戴磊 《计算机工程与应用》 CSCD 北大核心 2011年第31期209-211,共3页
Dijkstra算法是求解嵌入式GIS系统中最短路径的经典算法,通过对Dijkstra算法进行分析,改变图的存储结构和搜索方法,采用基于矩形限制区域的二叉排序树改进算法,减少了内存存储空间,缩短了查询时间,在一定程度上优化了最短路径的计算过程... Dijkstra算法是求解嵌入式GIS系统中最短路径的经典算法,通过对Dijkstra算法进行分析,改变图的存储结构和搜索方法,采用基于矩形限制区域的二叉排序树改进算法,减少了内存存储空间,缩短了查询时间,在一定程度上优化了最短路径的计算过程,实际数据测试也表明了该算法的有效性。 展开更多
关键词 dijkstra算法 嵌入式GIs 最短路径 矩形限制区域 二叉排序树
下载PDF
上一页 1 2 17 下一页 到第
使用帮助 返回顶部