12 2021 档案

摘要:1. 请用回溯法的方法分析“最小重量机器设计问题 #include <iostream>using namespace std;int n,m,d;int w[40][40];//重量 int c[40][40];//价格 int bestx[40];//最优解int x[40];//当前解 int 阅读全文
posted @ 2021-12-16 20:25 拂晓呀 阅读(24) 评论(0) 推荐(0) 编辑