Link to home
Start Free TrialLog in
Avatar of amit_mi2
amit_mi2

asked on

Implement Backtracking in Visual basic

how can i implement backtracking in a Visual Basic program.
give answar with example
Avatar of abosultan
abosultan
Flag of France image

what do you mean in backtracking , is it something from linear programming ,or backtracking trace???

ASKER CERTIFIED SOLUTION
Avatar of Mike Tomlinson
Mike Tomlinson
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Sorry, I lost a "." in there somehow...

It should be:

    While stack.Count() > 0
        List2.AddItem stackPop
    Wend

~IM