Theoretical Improvements of Control Algorithms in Robot Path Planning: From Traditional Methods to Intelligent Algorithms

Research Article
Open access

Theoretical Improvements of Control Algorithms in Robot Path Planning: From Traditional Methods to Intelligent Algorithms

Mingrong Huang 1*
  • 1 School of Intelligent Manufacturing, Xi’an Jiaotong-Liverpool University, Suzhou, Jiangsu, China, 215123    
  • *corresponding author mingrong.huang21@student.xjtlu.edu.cn
Published on 9 September 2025 | https://doi.org/10.54254/2755-2721/2025.LD26896
ACE Vol.179
ISSN (Print): 2755-2721
ISSN (Online): 2755-273X
ISBN (Print): 978-1-80590-184-6
ISBN (Online): 978-1-80590-129-7

Abstract

As robotics technologies evolve rapidly, path planning has emerged as a fundamental pillar underpinning autonomous navigation systems. Traditional algorithms such as A*, Dijkstra, and Bellman-Ford demonstrate competence in structured environments, yet exhibit notable limitations in dynamic and uncertain scenarios. In contrast, intelligent algorithms—including Genetic Algorithms (GA), Reinforcement Learning (RL), and hybrid strategies—provide measurable advantages in adaptability, learning capacity, and robustness. This study centers on comparing traditional and intelligent control algorithms for path planning from a theoretical perspective, outlining their respective principles, performance traits, and application contexts. The findings suggest that intelligent algorithms, owing to their capacity for real-time learning, environmental adaptation, and heuristic generalization, consistently outperform traditional approaches in dynamic and unstructured operational contexts. The paper offers critical theoretical insights to guide future algorithm selection and optimization for robot navigation. Furthermore, the paper discusses real-world implementation challenges, such as computational complexity, sensor uncertainty, and algorithm convergence stability, to highlight the applicability of these techniques in complex systems.

Keywords:

Intelligent Algorithms, Reinforcement Learning, Genetic Algorithms, Autonomous Navigation, Algorithm Optimization

Huang,M. (2025). Theoretical Improvements of Control Algorithms in Robot Path Planning: From Traditional Methods to Intelligent Algorithms. Applied and Computational Engineering,179,114-118.
Export citation

1. Introduction

Robot path planning is an essential component in the autonomy stack of mobile robotic systems. It involves determining an optimal or feasible route from a starting position to a destination while avoiding obstacles and adhering to constraints. In industrial applications, such as autonomous forklifts in warehouses and service robots in hospitals, efficient path planning enhances operational safety and effectiveness. Graph-search algorithms, such as A* and Dijkstra, rely on a structured map where all traversable and non-traversable regions are predefined. This assumption becomes increasingly unrealistic in dynamic, real-world scenarios involving moving obstacles, time-varying costs, and uncertain terrain [1,2]. As a result, the limitations of traditional algorithms necessitate exploration into intelligent approaches that can model uncertainty, learn adaptively, and respond in real time.

This study addresses the following research questions:

First, what are the theoretical limitations of traditional path planning algorithms in dynamic and uncertain environments?

Second, how do intelligent control algorithms address these limitations in terms of efficiency, scalability, and adaptability?

Third, what are the future trends in theoretical algorithmic development for robot path planning?The methodology adopted in this paper is based on comprehensive literature review, analytical comparison of algorithmic complexity, adaptability, convergence, and simulation-based performance indicators. This theoretical exploration provides meaningful insights to guide algorithm selection and integration in advanced robotic systems, especially in domains such as autonomous driving, planetary exploration, and urban service robotics [1, 3].

2. A review of traditional path planning algorithms

Traditional path planning algorithms are primarily deterministic and graph-based. They operate on predefined maps and assume full environmental awareness. These algorithms are widely used due to their simplicity, determinism, and provable correctness/guaranteed optimality.The most commonly used include:

A* Algorithm: Utilizes a heuristic function f(n) = g(n) + h(n) , where g(n) represents the cost from the start to node n , and h(n) is the estimated cost to the goal. Its admissibility and consistency properties ensure optimality when h(n) is properly designed [4].

Dijkstra’s Algorithm: A uniform-cost search that systematically explores the least-cost paths originating from the start node. It is memory-intensive and lacks directionality due to the absence of heuristics [1].

Bellman-Ford Algorithm: Handles negative weights and performs edge relaxation repeatedly. Though theoretically elegant, it is less practical for real-time applications due to high time complexity [1].

These algorithms have proven effective in structured environments such as automated warehouses and floor-cleaning robots. However, they encounter difficulties with map updates, dynamic changes, and online replanning [2, 5]. In practice, their reliance on static map assumptions leads to inefficiencies when replanning is required in response to moving obstacles or sensor noise. Moreover, traditional methods do not incorporate learning mechanisms and are less capable of generalizing from past navigation episodes.

3. Overview of intelligent path planning algorithms

Intelligent path planning algorithms leverage principles from artificial intelligence to provide adaptive and learning-capable decision-making mechanisms.. These algorithms do not rely on fixed maps or deterministic graph structures. Instead, they dynamically learn optimal routes based on environmental feedback. The two major intelligent approaches discussed below are Genetic Algorithms (GA) and Reinforcement Learning (RL).

Genetic Algorithm (GA): GAs operate by encoding candidate paths into chromosomes. These undergo selection, crossover, and mutation across generations. A common fitness function in robot navigation might evaluate total distance, number of turns, and obstacle proximity. A simplified pseudocode is:

```

Initialize population with random paths

Evaluate fitness of each path

While not converged:

Select fittest paths

Apply crossover and mutation

Evaluate new fitness scores

Return best path

```

GAs are known for their flexibility in non-convex and large search spaces. However, convergence can be slow and results sensitive to parameter tuning [2, 5].

Reinforcement Learning (RL): RL models such as Q-learning or DQN are based on the Markov Decision Process (MDP) framework. An agent receives observations, selects actions, and receives scalar rewards. The objective is to learn a policy \( \pi(a|s) \) that maximizes expected return.

RL is particularly powerful in partially observable, stochastic environments. For example, in warehouse navigation, RL agents learn policies that prioritize narrow paths during peak traffic hours [3, 5]. Nevertheless, RL training requires thousands of episodes, and real-world generalization remains an ongoing research challenge.

4. Comparative analysis and future directions

A theoretical comparison of traditional and intelligent algorithms highlights fundamental differences in assumptions, execution models, and performance. Below is a summary table based on findings from simulation studies and prior benchmarks [1,3]:

Table 1. Comparative evaluation of traditional vs. intelligent path planning algorithms

Criteria

Traditional Algorithms

Intelligent Algorithms

Adaptability

Low

High

Computational Load

Moderate

High (training-intensive)

Real-time Capability

Weak

Strong (post-training)

Determinism

High

Medium to Low

Learning Ability

None

Present

To further clarify the contrast between traditional and intelligent algorithms, several key evaluation criteria are considered. Adaptability reflects the system’s ability to function in dynamically changing or previously unseen environments—an area where intelligent algorithms significantly outperform traditional ones due to their learning-based mechanisms. Computational load, while moderate for traditional methods, increases notably for intelligent algorithms during training phases, although their execution phase can still be efficient. Regarding real-time capability, intelligent algorithms, especially after training, are capable of making rapid decisions, whereas traditional algorithms often suffer from delayed responses in unpredictable contexts. In terms of determinism, traditional planners provide predictable and repeatable outcomes, while intelligent approaches introduce stochastic elements due to their probabilistic reasoning, potentially improving flexibility at the cost of certainty. Lastly, learning ability marks a fundamental divide: traditional algorithms are static and manually tuned, whereas intelligent algorithms possess inherent learning mechanisms that allow continual performance improvement through experience.

This comparative framework reveals that while traditional algorithms are computationally efficient and deterministic, they lack adaptability and learning capabilities. In contrast, intelligent algorithms—despite their higher computational demands during training—exhibit greater flexibility and superior performance in complex and dynamic environments.

Future development in this field is likely to focus on several promising areas:

Hybrid Algorithms: These systems combine the deterministic accuracy of traditional methods like A* with the adaptive capabilities of RL. Layered planners might use A* for global route generation and RL for local obstacle negotiation [5]. Such integration allows planners to balance between structured reasoning and adaptive behavior, improving both safety and flexibility in navigation tasks.

Multi-Agent Coordination: Multi-agent path planning (MAPF) is an active area where coordination between robots must prevent collisions while maintaining efficiency. Intelligent coordination strategies incorporating decentralized RL or market-based negotiation models are emerging as effective alternatives to traditional centralized planners.

Scalability and Transferability: One of the key future directions lies in developing algorithms that can generalize across tasks and environments. Meta-learning and transfer learning approaches may empower robots to quickly adapt without retraining from scratch.

Uncertainty Handling: Addressing sensor noise, partial observability, and dynamic obstacles remains a central challenge. Probabilistic planning and belief-space reinforcement learning could be vital for improving robustness under uncertainty.

Ethical and Safety Considerations: As intelligent planning algorithms become more autonomous, ensuring safe behavior and compliance with ethical norms in real-world human-robot interaction contexts will be critical.

5. Conclusion

This paper presents a comprehensive theoretical review and comparison between traditional and intelligent algorithms in robot path planning. It has been shown that while traditional methods such as A* and Dijkstra offer simplicity and optimality in structured spaces, they fall short in unstructured, dynamic, and high-dimensional domains. Conversely, intelligent algorithms like Genetic Algorithms and Reinforcement Learning introduce learning mechanisms that enable greater flexibility and robustness.

The integration of both approaches in hybrid systems holds great potential for practical deployment. However, intelligent methods require significant computational resources, data, and fine-tuning to achieve acceptable real-world performance. Theoretical advancements are required in modeling uncertainty, improving sample efficiency, and combining planning with perception and control.As robotics continues to expand into real-world environments, the future of path planning lies in frameworks that are both theoretically grounded and practically adaptable.


References

[1]. Wang, J. & Zhang, Y. (2020). Comparative Study on Classical and Intelligent Path Planning Algorithms. *Journal of Automation*, 46(5), 66-72.

[2]. Liu, M., He, F., & Zhao, Y. (2021). Research on Path Optimization Based on Improved Genetic Algorithm. *Robotics and Applications*, 42(2), 104-110.

[3]. Xu, L. & Sun, Q. (2020). Reinforcement Learning-Based Autonomous Navigation in Unknown Environments. *Intelligent Systems Journal*, 37(1), 23-30.

[4]. Chen, H. & Wu, R. (2019). Path Planning of Mobile Robots Using Deep Q Network. *Journal of Artificial Intelligence*, 33(4), 19-26.

[5]. Li, C., Wang, K., & Hou, J. (2022). Hybrid Algorithm for Obstacle Avoidance in Complex Terrain. *Control Engineering Review*, 49(3), 88-94.


Cite this article

Huang,M. (2025). Theoretical Improvements of Control Algorithms in Robot Path Planning: From Traditional Methods to Intelligent Algorithms. Applied and Computational Engineering,179,114-118.

Data availability

The datasets used and/or analyzed during the current study will be available from the authors upon reasonable request.

Disclaimer/Publisher's Note

The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of EWA Publishing and/or the editor(s). EWA Publishing and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

About volume

Volume title: Proceedings of CONF-MLA 2025 Symposium: Intelligent Systems and Automation: AI Models, IoT, and Robotic Algorithms

ISBN:978-1-80590-184-6(Print) / 978-1-80590-129-7(Online)
Editor:Hisham AbouGrad
Conference date: 17 November 2025
Series: Applied and Computational Engineering
Volume number: Vol.179
ISSN:2755-2721(Print) / 2755-273X(Online)

© 2024 by the author(s). Licensee EWA Publishing, Oxford, UK. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license. Authors who publish this series agree to the following terms:
1. Authors retain copyright and grant the series right of first publication with the work simultaneously licensed under a Creative Commons Attribution License that allows others to share the work with an acknowledgment of the work's authorship and initial publication in this series.
2. Authors are able to enter into separate, additional contractual arrangements for the non-exclusive distribution of the series's published version of the work (e.g., post it to an institutional repository or publish it in a book), with an acknowledgment of its initial publication in this series.
3. Authors are permitted and encouraged to post their work online (e.g., in institutional repositories or on their website) prior to and during the submission process, as it can lead to productive exchanges, as well as earlier and greater citation of published work (See Open access policy for details).

References

[1]. Wang, J. & Zhang, Y. (2020). Comparative Study on Classical and Intelligent Path Planning Algorithms. *Journal of Automation*, 46(5), 66-72.

[2]. Liu, M., He, F., & Zhao, Y. (2021). Research on Path Optimization Based on Improved Genetic Algorithm. *Robotics and Applications*, 42(2), 104-110.

[3]. Xu, L. & Sun, Q. (2020). Reinforcement Learning-Based Autonomous Navigation in Unknown Environments. *Intelligent Systems Journal*, 37(1), 23-30.

[4]. Chen, H. & Wu, R. (2019). Path Planning of Mobile Robots Using Deep Q Network. *Journal of Artificial Intelligence*, 33(4), 19-26.

[5]. Li, C., Wang, K., & Hou, J. (2022). Hybrid Algorithm for Obstacle Avoidance in Complex Terrain. *Control Engineering Review*, 49(3), 88-94.