- 博客(2)
- 收藏
- 关注
原创 动态规划(背包问题)
有一背包5kg容量,有三个物品,分别为价值6,重量1,价值10,重量2,价值12,重量4,问:如何让背包装有最多价值的物品,价值为多少。 处理思路: 1. 代码如下: public class DP { public static void main(String[] args) { int[] value = {6,10,12}; int[] weigth= {1,2,4}; int w = 5; //背包重量为5 ..
2021-09-01 18:21:10 141
原创 关于java实现图片上传
//取到图片的名称xxx.jpg/png/ public static List getPic(String path) { List list = new ArrayList(); File file = new File(path); File[] files = file.listFiles(); for (int i = 0; i < files.length; i++) { File file..
2021-08-27 13:44:51 152
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人