小算法--从一个数组中选择固定个数的元素的所有可能

#include 
using namespace std;
#define Select_Num 10

void Select(int* arr, int start, int* result, int count, const int Num, const int arr_len)
{
	int i = 0;
	for(i = start;i=0;j--)
			{
				cout<

 

你可能感兴趣的:(小算法)