• 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--通讯录、蓝牙、内购、GameCenter、iCloud、Passbook等系统服务开发汇总
    iOS-网络爬虫
    iOS-性能优化
    iOS开发——网络实用技术OC篇&网络爬虫-使用青花瓷抓取网络数据
    深入解析Linux内核及其相关架构的依赖关系
    详解Linux系统中的文件名和文件种类以及文件权限
    Linux系统中使用netcat命令的奇技淫巧
    Linux系统下强大的lsof命令使用宝典
    Linux下多线程下载工具MWget和Axel使用介绍
    Linux下针对路由功能配置iptables的方法详解
  • 原文地址:https://www.cnblogs.com/xxxsans/p/13854332.html
Copyright © 2020-2023  润新知