- 博客(2)
- 收藏
- 关注
原创 使用SA算法解决基于中国地图的TSP问题
退火算法解决基于中国的TSP(旅行商)问题#include<stdio.h>#include<stdlib.h>#include<string.h>#include<time.h>#include<math.h>#define INITIAL_TEMPERATURE 50000.0 // 初始温度#define T_end (1e-8)#define q 0.98 // 退火系数#define L 1000 // 每个温
2021-04-14 21:05:55 291
原创 JAVA实现矩阵乘法
import java.util.Scanner;public class Matrix{int[][] Element;int Column;int Row;public Matrix(int Column, int Row){this.Column = Column;this.Row = Row;this.Element = new int[Column][Row];}public void Init(){for(int i = 0; i < this.Column;
2020-10-14 19:45:29 97
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人