📜  计算数组的所有排列

📅  最后修改于: 2022-05-13 01:55:02.353000             🧑  作者: Mango

计算数组的所有排列

给定一个没有重复元素的整数数组 A[],编写一个函数,该函数返回一个数组的所有排列的计数,该数组对于 A[] 中的每个 i 都没有 [i, i+1] 的子数组。
例子:

Input  : 1 3 9 
Output : 3
All the permutation of 1 3 9 are : 
[1, 3, 9], [1, 9, 3], [3, 9, 1], [3, 1, 9], [9, 1, 3], [9, 3, 1]
Here [1, 3, 9], [9, 1, 3] are removed as they contain subarray 
[1, 3] from original list and [3, 9, 1] removed as it contains 
subarray [3, 9] from original list so, 
Following are the 3 arrays that satisfy the condition : 
[1, 9, 3], [3, 1, 9], [9, 3, 1]

Input  : 1 3 9 12
Output : 11

天真的解决方案:遍历所有排列的列表,并从A[]中删除那些包含任何子数组[i, i+1]的数组。
代码:用于找出数组中排列的Python代码

Python3
# Python implementation of the approach
from itertools import permutations
 
# Function that returns the count of all the permutation
# having no subarray of [i,i+1]
 
def count(arr):
    z=[]
    perm = permutations(arr)
     
    for i in list(perm):
        z.append(list(i))
    q=[]
     
    for i in range(len(arr)-1):
        x,y=arr[i],arr[i+1]
         
        for j in range(len(z)):
            if z[j].index(x)!=len(z[j])-1:
                if z[j][z[j].index(x)+1]==y:
                    q.append(z[j])
                     
    for i in range(len(q)):
         if q[i] in z:
             z.remove(q[i])
    return len(z)
  
# Driver Code
A = [1,3, 8, 9]
print(count(A))


C++
// C++ implementation of the approach
// Recursive function that return count of
// permutation based on the length of array.
#include 
using namespace std;
 
int count(int n)
{
    if(n == 0)
        return 1;
    if(n == 1)
        return 1;
    else
        return (n * count(n - 1)) +
                        ((n - 1) * count(n - 2));
}
 
// Driver code
int main()
{
    int A[] = {1, 2, 3, 9};
 
    int len = sizeof(A) / sizeof(A[0]);
    cout << count(len - 1);
}
 
// This code is contributed by 29AjayKumar


Java
// Java implementation of the approach
// Recursive function that return count of
// permutation based on the length of array.
import java.util.*;
 
class GFG
{
 
static int count(int n)
{
    if(n == 0)
        return 1;
    if(n == 1)
        return 1;
    else
        return (n * count(n - 1)) +
                        ((n - 1) * count(n - 2));
}
 
// Driver Code
static public void main(String[] arg)
{
    int []A = {1, 2, 3, 9};
 
    System.out.print(count(A.length - 1));
}
}
 
// This code is contributed by PrinciRaj1992


Python3
# Python implementation of the approach
# Recursive function that return count of
# permutation based on the length of array.
 
def count(n):
    if n == 0:
        return 1
    if n == 1:
        return 1
    else:
        return (n * count(n-1)) + ((n-1) * count(n-2))
     
# Driver Code
A = [1, 2, 3, 9]
print(count(len(A)-1))


C#
// C# implementation of the approach
// Recursive function that return count of
// permutation based on the length of array.
using System;
     
class GFG
{
 
static int count(int n)
{
    if(n == 0)
        return 1;
    if(n == 1)
        return 1;
    else
        return (n * count(n - 1)) +
         ((n - 1) * count(n - 2));
}
 
// Driver Code
static public void Main(String[] arg)
{
    int []A = {1, 2, 3, 9};
 
    Console.Write(count(A.Length - 1));
}
}
 
// This code is contributed by Princi Singh


Javascript


输出 :

11

有效的解决方案:以下是一个递归解决方案,它基于数组的长度决定了A[ ]中每个 i 没有子数组[i, i+1]的所有排列的数量
假设 A[ ] 的长度为 n,则

n        = n-1
count(0) = 1
count(1) = 1
count(n) = n * count(n-1) + (n-1) * count(n-2)

代码:下面是实现返回排列计数的递归函数的代码

C++

// C++ implementation of the approach
// Recursive function that return count of
// permutation based on the length of array.
#include 
using namespace std;
 
int count(int n)
{
    if(n == 0)
        return 1;
    if(n == 1)
        return 1;
    else
        return (n * count(n - 1)) +
                        ((n - 1) * count(n - 2));
}
 
// Driver code
int main()
{
    int A[] = {1, 2, 3, 9};
 
    int len = sizeof(A) / sizeof(A[0]);
    cout << count(len - 1);
}
 
// This code is contributed by 29AjayKumar

Java

// Java implementation of the approach
// Recursive function that return count of
// permutation based on the length of array.
import java.util.*;
 
class GFG
{
 
static int count(int n)
{
    if(n == 0)
        return 1;
    if(n == 1)
        return 1;
    else
        return (n * count(n - 1)) +
                        ((n - 1) * count(n - 2));
}
 
// Driver Code
static public void main(String[] arg)
{
    int []A = {1, 2, 3, 9};
 
    System.out.print(count(A.length - 1));
}
}
 
// This code is contributed by PrinciRaj1992

Python3

# Python implementation of the approach
# Recursive function that return count of
# permutation based on the length of array.
 
def count(n):
    if n == 0:
        return 1
    if n == 1:
        return 1
    else:
        return (n * count(n-1)) + ((n-1) * count(n-2))
     
# Driver Code
A = [1, 2, 3, 9]
print(count(len(A)-1))

C#

// C# implementation of the approach
// Recursive function that return count of
// permutation based on the length of array.
using System;
     
class GFG
{
 
static int count(int n)
{
    if(n == 0)
        return 1;
    if(n == 1)
        return 1;
    else
        return (n * count(n - 1)) +
         ((n - 1) * count(n - 2));
}
 
// Driver Code
static public void Main(String[] arg)
{
    int []A = {1, 2, 3, 9};
 
    Console.Write(count(A.Length - 1));
}
}
 
// This code is contributed by Princi Singh

Javascript


输出 :

11