cuadriante / datosII_proyectoII_rent_a_car

0 stars 0 forks source link

Backtracking Algorithm Does Not Account for Cyclical Graphs #1

Closed AFR-TEC closed 2 years ago

AFR-TEC commented 2 years ago

the Backtracking algorithm does not account for cyclical graphs, resulting in an infinite loop due to its recursive nature.

AFR-TEC commented 2 years ago

the problem was resolved by not allowing the algorithm to check the same node twice.