2020-06-16 08:09:19 +00:00
|
|
|
# Print all subset combinations of n element in given set of r element.
|
2020-05-22 06:10:11 +00:00
|
|
|
|
|
|
|
|
2020-01-18 12:24:33 +00:00
|
|
|
def combination_util(arr, n, r, index, data, i):
|
2020-05-22 06:10:11 +00:00
|
|
|
"""
|
|
|
|
Current combination is ready to be printed, print it
|
|
|
|
arr[] ---> Input Array
|
|
|
|
data[] ---> Temporary array to store current combination
|
|
|
|
start & end ---> Staring and Ending indexes in arr[]
|
|
|
|
index ---> Current index in data[]
|
|
|
|
r ---> Size of a combination to be printed
|
|
|
|
"""
|
2019-10-05 05:14:13 +00:00
|
|
|
if index == r:
|
|
|
|
for j in range(r):
|
|
|
|
print(data[j], end=" ")
|
|
|
|
print(" ")
|
|
|
|
return
|
|
|
|
# When no more elements are there to put in data[]
|
|
|
|
if i >= n:
|
|
|
|
return
|
2020-01-18 12:24:33 +00:00
|
|
|
# current is included, put next at next location
|
2019-10-05 05:14:13 +00:00
|
|
|
data[index] = arr[i]
|
2020-01-18 12:24:33 +00:00
|
|
|
combination_util(arr, n, r, index + 1, data, i + 1)
|
2019-10-05 05:14:13 +00:00
|
|
|
# current is excluded, replace it with
|
|
|
|
# next (Note that i+1 is passed, but
|
|
|
|
# index is not changed)
|
2020-01-18 12:24:33 +00:00
|
|
|
combination_util(arr, n, r, index, data, i + 1)
|
2019-10-05 05:14:13 +00:00
|
|
|
# The main function that prints all combinations
|
|
|
|
# of size r in arr[] of size n. This function
|
|
|
|
# mainly uses combinationUtil()
|
|
|
|
|
|
|
|
|
2020-01-18 12:24:33 +00:00
|
|
|
def print_combination(arr, n, r):
|
|
|
|
# A temporary array to store all combination one by one
|
2019-10-05 05:14:13 +00:00
|
|
|
data = [0] * r
|
2020-01-18 12:24:33 +00:00
|
|
|
# Print all combination using temporary array 'data[]'
|
|
|
|
combination_util(arr, n, r, 0, data, 0)
|
2019-10-05 05:14:13 +00:00
|
|
|
|
|
|
|
|
2022-10-22 11:33:51 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
# Driver code to check the function above
|
|
|
|
arr = [10, 20, 30, 40, 50]
|
|
|
|
print_combination(arr, len(arr), 3)
|
|
|
|
# This code is contributed by Ambuj sahu
|