/** * File: permutations_i.java * Created Time: 2023-04-24 * Author: krahets (krahets@163.com) */ package chapter_backtracking; import java.util.*; public class permutations_i { /* Backtracking algorithm: Permutation I */ public static void backtrack(List state, int[] choices, boolean[] selected, List> res) { // When the state length equals the number of elements, record the solution if (state.size() == choices.length) { res.add(new ArrayList(state)); return; } // Traverse all choices for (int i = 0; i < choices.length; i++) { int choice = choices[i]; // Pruning: do not allow repeated selection of elements if (!selected[i]) { // Attempt: make a choice, update the state selected[i] = true; state.add(choice); // Proceed to the next round of selection backtrack(state, choices, selected, res); // Retract: undo the choice, restore to the previous state selected[i] = false; state.remove(state.size() - 1); } } } /* Permutation I */ static List> permutationsI(int[] nums) { List> res = new ArrayList>(); backtrack(new ArrayList(), nums, new boolean[nums.length], res); return res; } public static void main(String[] args) { int[] nums = { 1, 2, 3 }; List> res = permutationsI(nums); System.out.println("Input array nums = " + Arrays.toString(nums)); System.out.println("All permutations res = " + res); } }