文章
37
粉丝
98
获赞
4
访问
21.7k
#include<iostream>
#include<algorithm>
#include<string>
using namespace std;
int a[100],b[100], cnt = 0,aNum,bNum;
void searchRoute(int x,int flag) {
if (x == 1) {
if (flag == 0) {
a[cnt++] = 1;
}
else {
b[cnt++] = 1;
}
return;
}
else {
if (flag == 0) {
a[cnt++] = x;
}
else {
b[cnt++] = x;
&nbs...
登录后发布评论
暂无评论,来抢沙发