回答編集履歴
2
誤字の修正
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
最初の
|
1
|
+
最初の都市が固定なら、
|
2
2
|
```c
|
3
3
|
#include <stdio.h>
|
4
4
|
|
1
コードの修正(char → int)
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
{
|
7
7
|
if (i < n)
|
8
8
|
for (int j = i; j < n; j++) {
|
9
|
-
|
9
|
+
int t = a[i]; a[i] = a[j], a[j] = t;
|
10
10
|
gen(a, n, i+1);
|
11
11
|
t = a[i], a[i] = a[j], a[j] = t;
|
12
12
|
}
|