CS代写 package finalproject;

package finalproject;

import java.util.ArrayList;
import java.util.LinkedList;

Copyright By PowCoder代写 加微信 powcoder

import finalproject.system.Tile;

public class SafestShortestPath extends ShortestPath {
public int health;
public Graph costGraph;
public Graph damageGraph;
public Graph aggregatedGraph;

//TODO level 8: finish class for finding the safest shortest path with given health constraint
public SafestShortestPath(Tile start, int health) {
super(start);
this.health = health;

public void generateGraph() {
// TODO Auto-generated method stub

程序代写 CS代考 加微信: powcoder QQ: 1823890830 Email: powcoder@163.com