5972专题

Codeup_5972:问题 A: 【递归入门】全排列

目录 Problem DescriptionInputOutputSample InputSample Output原题链接解题思路经验总结代码实现(C) Problem Description 排列与组合是常用的数学方法。 先给一个正整数 ( 1 < = n < = 10 ) 例如n=3,所有组合,并且按字典序输出: 1 2 3 1 3 2 2 1 3 2 3 1 3 1 2