zoukankan      html  css  js  c++  java
  • Permutation and Combination in Python

    Permutation


    First import itertools package to implement permutations method in python. This method takes a list as an input and return an object list of tuples that contain all permutation in a list form.

    # A Python program to print all 
    # permutations using library function 
    from itertools import permutations 
    
    # Get all permutations of [1, 2, 3] 
    perm = permutations([1, 2, 3]) 
    
    # Print the obtained permutations 
    for i in list(perm): 
        print i 

    Output

    (1, 2, 3)
    (1, 3, 2)
    (2, 1, 3)
    (2, 3, 1)
    (3, 1, 2)
    (3, 2, 1)

    It generates n! permutations if length of input sequence is n.

    If you want to get permutations of length L then implement it in this way.

    # A Python program to print all 
    # permutations of given length 
    from itertools import permutations 
    
    # Get all permutations of length 2 
    # and length 2 
    perm = permutations([1, 2, 3], 2) 
    
    # Print the obtained permutations 
    for i in list(perm): 
        print i 

    Output

    (1, 2)
    (1, 3)
    (2, 1)
    (2, 3)
    (3, 1)
    (3, 2)
    It generate nCr * r! permutations if length of input sequence is n and input parameter is r.

    Combination

    This method takes a list and a input r as a input and return a object list of tuples which contain
    all possible combination of length r in a list form.
    # A Python program to print all 
    # combinations of given length 
    from itertools import combinations 
    
    # Get all combinations of [1, 2, 3] 
    # and length 2 
    comb = combinations([1, 2, 3], 2) 
    
    # Print the obtained combinations 
    for i in list(comb): 
        print i 

    Output

    (1, 2)
    (1, 3)
    (2, 3)
    1.Combinations are emitted in lexicographic sort order of input. So, if the input list is sorted, the combination tuples will be produced in sorted order.
    # A Python program to print all combinations 
    # of given length with unsorted input. 
    from itertools import combinations 
    
    # Get all combinations of [2, 1, 3] 
    # and length 2 
    comb = combinations([2, 1, 3], 2) 
    
    # Print the obtained combinations 
    for i in list(comb): 
        print i 

    Output

    (2, 1)
    (2, 3)
    (1, 3)
    2.Elements are treated as unique based on their position, not on their value. So if the input elements are unique, there will be no repeat values in each combination.
    # A Python program to print all combinations 
    # of given length with duplicates in input 
    from itertools import combinations 
    
    # Get all combinations of [1, 1, 3] 
    # and length 2 
    comb = combinations([1, 1, 3], 2) 
    
    # Print the obtained combinations 
    for i in list(comb): 
        print i 

    Output

    (1, 1)
    (1, 3)
    (1, 3)
    3.If we want to make combination of same element to same element then we use combinations_with_replacement.
    # A Python program to print all combinations 
    # with an element-to-itself combination is 
    # also included 
    from itertools import combinations_with_replacement 
    
    # Get all combinations of [1, 2, 3] and length 2 
    comb = combinations_with_replacement([1, 2, 3], 2) 
    
    # Print the obtained combinations 
    for i in list(comb): 
        print i 

    Output

    (1, 1)
    (1, 2)
    (1, 3)
    (2, 2)
    (2, 3)
    (3, 3)

    https://www.geeksforgeeks.org/permutation-and-combination-in-python/
  • 相关阅读:
    正则表达式
    iOS获取设备型号、设备类型等信息
    Dubbo-Zookeeper安装
    CentOS-常用安装
    多线程-线程通信
    JVM-高效并发
    静态代理与JDK动态代理
    JVM-类加载机制
    RPC原理及实现
    JVM-自动内存管理机制
  • 原文地址:https://www.cnblogs.com/xxxsans/p/13854332.html
Copyright © 2011-2022 走看看