I. Introduction
Traveling Salesman Problem (TSP) is a typical NP-hard combinatorial optimization problem[1]. which can be simply stated as follows: given a collection of cities, find the shortest tour which visits all of them and returns to the starting point. Typically the cities are given coordinates in the 2D plane and then the tour length is measured by the sum of Euclidean distances between each pair on the tour. For such discrete prblems, there are two baffles generally hard to overcome: one is that the problem is hard to be solved in multinomial time, the other is that the run time for solving such kind of problems will increase exponentially with the scale increasing. As far as the large scale TSP is concerned, only the acceptable solution can be got in multinomial time generally. Resently, Many heuristic and intelligent algorithms, including LKM[2], Simulated Annealing(SA), Genetic Algorithm(GA)[3], Ant Colony Algorithm (ACA)[4], etc., have been used to solve the NP-hard problem, and obtain great achievements.