优雅酒窝

文章
3
资源
0
加入时间
3年0月21天

数字信号处理的学习资源

----Due to some reasons, my NS2 website is sometimes donw and unavailable for many users. Therefore, I provide another backup website. 1. NS2 http://csie.nqu.edu.tw/smallko/ns2/ns2.htm 2. old_NS2 (bac

2-2 无重复排列

题目描述:输出从前N个正整数中取出M个数(不可重复)的排列。#include <cstdio>#include <cstring>void Dfs(int k);int T[50];int H[50];//标记数组,判断该数是否已被用过。int N, M;int main() { memset(H, 0, sizeof(H)); scanf("%d%d", &N, &M);