摘要: 回溯算法实现全排列2 问题仍然是昨天的问题,今天又花了一个小时左右自己重写了一遍: include<bits/stdc++.h> void swapa(int &a,int & b) { int temp=a; a=b; b=temp; } void qp(int start,int a[],int n) { if(st 阅读全文
posted @ 2025-07-30 21:28 暗神酱 阅读(5) 评论(0) 推荐(0)