Let's say we are given 7 cities A,B,C,D,E,F,G and we have a start state ABCDEFGA with some cost 'x' , I don't understand what the children of this node would be.Meaning how would the second iteration of the hill climbing algorithm proceed?
Would the node ABCDEFGA which is the start state have 6 children? As in would the
second iteration be ACBDEFGA, ADCBEFGA, AECDBFGA, AFCDEBGA, AGCDEFBA?
Third Iteration: Let's say ADCBEFGA is selected in the second iteration, then would the third iteration be exchanging city 'C' with all other cities and so forth?
I would just like to know if my understanding of the algorithm is right.