主要考回溯法求全排列 ``` import java.util.*; public class TwenlyFourygame { public static List<String> opList=Arrays.asList("+","-","*","/"); public static List<String> reList=new ArrayList<>(); public static HashMap<String, Integer> map = new HashMap<String, Intege...