最优装载问题与贪心算法

该程序使用Java实现了一个贪心算法,对给定的集装箱重量进行排序,然后尝试按重量从小到大的顺序装载到容量为70的轮船上,直到无法再装载为止。最终输出能装上的集装箱编号。
摘要由CSDN通过智能技术生成

解题步骤

   首先将n个集装箱依其重量从小到大排序。

    然后依此顺序将集装箱装上轮船,直到不能装为止。

package com.hhmstu.Algorithmdesignandanalysis.Greedyalgorithm;

import java.lang.reflect.Array;
import java.util.Arrays;
import java.util.Comparator;

public class Optimal_loading {
    public static void main(String[] args) {
        int c = 70;
        int[][] w = {{1, 20}, {2, 10}, {3, 26}, {4, 15}};
        int[] m = new int[4];
        ol(c, w, m);
        System.out.println("要装的集装箱号为:");
        for (int i = 0; i < m.length; i++) {
            if (m[i] != 0) {
                System.out.print(m[i] + "\t");
            }
        }
    }

    public static void ol(int c, int[][] w, int[] m) {
        Arrays.sort(w, new Comparator<int[]>() {
            @Override
            public int compare(int[] o1, int[] o2) {
                return o1[1] - o2[1];
            }
        });
        for (int i = 0; i < w.length; i++) {
            if (w[i][1] <= c) {
                m[i] = w[i][0];
                c -= w[i][1];
            }
        }

    }
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值