`

Permutations

阅读更多
Given a collection of distinct numbers, return all possible permutations.

For example,
[1,2,3] have the following permutations:
[1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], and [3,2,1].

全排列的问题,同样用回溯法,回溯的边界条件我们可以通过每个结果的长度来判断,当结果的长度为给定数组的长度时,我们就开始回溯。往下寻找的时候,开始位置我们都从0开始,但这样会有重复的元素被记录,所以我们要加一个判断,判断当前元素是否已经被记录。代码如下:
public class Solution {
    public List<List<Integer>> permute(int[] nums) {
        LinkedList<Integer> list = new LinkedList<Integer>();
        LinkedList<List<Integer>> llist = new LinkedList<List<Integer>>();
        if(nums == null || nums.length == 0) return llist;
        getPermute(0, nums, list, llist);
        return llist;
    }
    public void getPermute(int start, int[] nums, LinkedList<Integer> list, LinkedList<List<Integer>> llist) {
        if(list.size() == nums.length) {
            llist.add(new LinkedList<Integer>(list));
        }
        for(int i = start; i < nums.length; i++) {
            if(!list.contains(nums[i])) {
                list.add(nums[i]);
                getPermute(0, nums, list, llist);
                list.removeLast();
            }
        }
    }
}
分享到:
评论

相关推荐

    a survey of alternating permutations.pdf

    Richard P. Stanley的经典文章A Survey of Alternating Permutations,供有需要者下载

    Fourier Theoretic Probabilistic Inference over Permutations

    ### Fourier Theoretic Probabilistic Inference over Permutations #### Introduction This paper discusses a unique method for probabilistic inference over permutations, which are fundamental in a wide ...

    js-leetcode题解之47-permutations-ii.js

    在解决LeetCode中的47号问题"Permutations II"时,我们面临的是一个对给定整数数组进行全排列,并且要求结果中的排列是唯一的,即没有重复排列的问题。由于数组中可能包含重复的数字,因此我们需要在算法设计时考虑...

    C语言-leetcode题解之46-permutations.c

    在leetcode中,第46题“permutations”要求编写一个函数,返回给定数字的所有可能排列组合。这是一道经典的排列组合问题,通常采用回溯算法来解决。回溯算法是一种通过探索所有可能的候选解来找出所有解的算法,如果...

    信息安全_数据安全_Lossy_Trapdoor_Permutations_with.pdf

    【信息安全与数据安全:Lossy Trapdoor Permutations的深度探讨】 在信息安全领域,数据安全是至关重要的一环。Lossy Trapdoor Permutations(LTP)是一种用于保护数据安全的加密技术,它结合了trapdoor函数和lossy...

    C语言-leetcode题解之47-permutations-ii.c

    标题中的“leetcode题解之47-permutations-ii.c”指的是一段用C语言编写的代码,该代码旨在解决leetcode网站上的算法问题——“47.全排列II”(Permutations II)。这是一个经典的算法题,要求编写一个程序来找出...

    permutations

    在编程领域,特别是使用Python语言时,"permutations"是一个重要的概念,它涉及到组合学和算法设计。排列是指从给定的元素集中选取若干个元素,并按照一定的顺序进行排列的所有可能方式。在Python中,我们可以使用...

    计算机程序设计与艺术第四卷2册:生成所有元组和排列Generating All Tuples and Permutations(中英)

    第四卷第二册《生成所有元组和排列Generating All Tuples and Permutations》则专注于算法设计,特别是涉及如何生成所有可能的元组和排列。 在计算机科学中,元组(Tuples)是一种有序的数据结构,它可以包含不同...

    permutations-count:计算可能的排列数量

    安装$ npm install --save permutations-count 用法 var permutationsCount = require ( 'permutations-count' ) ;var numPermutations = permutationsCount ( 12 , 3 ) ;console . log ( numPermutations ) ; // =&gt;...

    计算机程序设计与艺术第四卷3册:生成所有组合和分划Generating All Combinations and Permutations(中英)

    大师Donald E. Knuth(汉名高德纳)的著作,计算机程序设计与艺术第四卷3册:生成所有组合和分划Generating All Combinations and Permutations(中英)

    Python库 | email_permutations-0.2.0-py3-none-any.whl

    资源分类:Python库 所属语言:Python 资源全名:email_permutations-0.2.0-py3-none-any.whl 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    matlab开发-PermutationsApp

    "permutations.mlapp"是MATLAB Live App,这是MATLAB中的一种新型交互式应用程序格式,用户可以直接运行而无需编写代码。它可能包含了上述功能的实现和界面设计。而"license.txt"文件则包含了软件的许可信息,确保...

    Number_permutations:重复数排列

    数字排列重复数排列Расчётколичествастроквфайлепроизвёлкомандой:.. \ permutations.txt“ |测量对象-线ВWindouse 标题:行字字符属性30240

    Permutations Calculator-开源

    《Permutations Calculator 开源软件深度解析》 在数字化时代,我们常常需要处理各种数据的排列组合问题,这在数学、编程、密码学等领域都极为常见。为此,一款名为"Permutations Calculator"的开源软件应运而生,...

    permutations:查找字符串的所有排列

    permutations ( 'abc' ) // [ 'abc', 'acb', 'bac', 'bca', 'cab', 'cba' ]permutations ( 'ab' ) // [ 'ab', 'ba']permutations ( 'aa' ) // [ 'aa', 'aa' ]permutations ( 'aa' , { unique : true } ) // [ 'aa' ]...

    Excedance Numbers for Permutations of Type $D$

    D型排列上的超越数,赵飞燕,,本文主要研究了B型超越数,稳定点和圈在D型排列上的分布。我们得到了带符号的超越数在D型排列和D型错排上的递推关系和闭公式。

    js-leetcode题解之46-permutations.js

    知识点: 1. JS中的数组方法:在解答这道题时,我们首先需要了解一些JavaScript中处理数组的方法。例如,可以利用Array.prototype.slice()对数组进行浅拷贝,Array.prototype.map()生成一个新数组,以及Array....

Global site tag (gtag.js) - Google Analytics