コード例 #1
0
        void calculate(TSPNodeData node)
        {
            nodes.Remove(node);
            if (node.level == dimension - 1)
            {
                this.path = node.path;
                this.cost = node.cost;
                return;
            }

            for (int k = 0; k < dimension; k++)
            {
                if (node.visited[k] == false)
                {
                    double[,] newMatrix = MatrixUtil.Clone(node.matrix);
                    double cij = newMatrix[node.index, k];
                    newMatrix[k, node.index] = Weight.Infinity;
                    for (int i = 0; i < dimension; i++)
                    {
                        for (int j = 0; j < dimension; j++)
                        {
                            if (i == node.index || j == k)
                            {
                                newMatrix[i, j] = Weight.Infinity;
                            }
                        }
                    }
                    double cost;
                    double[,] reducedNewMatrix = ReduceMatrix(newMatrix, out cost);
                    cost += cij + node.cost;
                    bool[] visited = new bool[dimension];
                    int[]  path    = new int[dimension + 1];
                    Array.Copy(node.visited, visited, dimension);
                    Array.Copy(node.path, path, dimension);
                    visited[k]           = true;
                    path[node.level + 1] = k;
                    nodes.Add(new TSPNodeData()
                    {
                        matrix  = reducedNewMatrix,
                        cost    = cost,
                        level   = node.level + 1,
                        visited = visited,
                        index   = k,
                        path    = path
                    });
                }
            }
            nodes.Sort();
            calculate(nodes[0]);
        }
コード例 #2
0
        public TravelingSalesman(Graph graph)
        {
            double cost;

            double[,] matrix = ReduceMatrix(graph.GetMatrix(), out cost);
            dimension        = matrix.GetLength(0);
            bool[] visited = new bool[dimension];
            visited[0] = true;
            int[]       path = new int[dimension + 1];
            TSPNodeData root = new TSPNodeData()
            {
                cost    = cost,
                matrix  = matrix,
                visited = visited,
                level   = 0,
                index   = 0,
                path    = path
            };

            nodes.Add(root);
            calculate(root);
        }