摘要: #include #include static void swap(char* pchar1, char* pchar2) { //交换数组的两个数 char tmp = *pchar1; *pchar1 = *pchar2; *pchar2 = tmp; } void permutation(char* pchar, int begin, int len... 阅读全文
posted @ 2016-03-19 10:40 没有梦想的小灰灰 阅读(155) 评论(0) 推荐(0) 编辑