第一题,回溯找到所有的递增序列,然后每次递归都判断剩下未标记的数字是否严格递减 static int[] book; static int[] nums; static int n; static List<Integer> path = new ArrayList<>(); public static void main(String[] args) { nums = new int[]{8,6,1,3,2,4,5}; n = nums.length; book = new int[n]; dfs(0,Integer.MIN_VALUE); } public static void dfs(int beg,int pre){ if(check())//每次check一下剩下的数组是否完全递减 System.out.println(path); for(int i = beg; i < n; i++){//每次从上一个数的下标+1开始 if(book[i] == 0){ if(nums[i] > pre){//如果本次是递增的才继续递归 book[i] = 1; path.add(nums[i]); dfs(i+1,nums[i]); path.remove(path.size()-1); book[i] = 0; } } } } //所有符合的解 [1, 3, 4, 5] [1, 2, 4, 5] [1, 4, 5]
2 1

相关推荐

头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
jack_miller:我给我们导员说我不在这里转正,可能没三方签了。导员说没事学校催的时候帮我想办法应付一下
点赞 评论 收藏
分享
牛客网
牛客企业服务