package structures; import java.util.Arrays; public class Heap { private final String[] heap ; public Heap(String[] args) { heap = args.clone() ; } }