题解 2146: 信息学奥赛一本通T1317-组合的输出

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

C++_DFS(深度优先搜索)

摘要:参考代码:#include<iostream>#include<algorithm>#include<cstdio>using namespace std;int const N =30;int n,……

模拟数的进位运算

摘要:解题思路:如下注意事项:参考代码:#include<stdio.h>int main(){             int n,r;             scanf("%d%d",&n,&r); ……

信息学奥赛一本通T1317-组合的输出

摘要:解题思路:-  combination 函数是一个递归函数,用于生成组合。- 当 index 等于 r 时,说明已经生成了一个组合,输出该组合。- 在循环中,从 start 到 n 遍历,将当前数字加……

最易懂的代码

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n,r;int arr[30];void func(int x,int st……

Python 深度优先算法(DFS)

摘要:解题思路:注意事项:参考代码:n,r = map(int,input().strip().split()) nums = [i for i in range(1,n+1)] result = []……

C语言解组合的输出

摘要:解题思路:注意事项:注意输出格式参考代码:#include <stdio.h>#include <stdbool.h>int n,r;bool judge[25];int b[25];void arr……