この形式のファイルを解析しようとしています:
12
0,1,2,3,1,2,3,4,2,3,4,5
1,0,1,2,2,1,2,3,3,2,3,4
2,1,0,1,3,2,1,2,4,3,2,3
3,2,1,0,4,3,2,1,5,4,3,2
1,2,3,4,0,1,2,3,1,2,3,4
2,1,2,3,1,0,1,2,2,1,2,3
3,2,1,2,2,1,0,1,3,2,1,2
4,3,2,1,3,2,1,0,4,3,2,1
2,3,4,5,1,2,3,4,0,1,2,3
3,2,3,4,2,1,2,3,1,0,1,2
4,3,2,3,3,2,1,2,2,1,0,1
5,4,3,2,4,3,2,1,3,2,1,0
0,5,2,4,1,0,0,6,2,1,1,1
5,0,3,0,2,2,2,0,4,5,0,0
2,3,0,0,0,0,0,5,5,2,2,2
4,0,0,0,5,2,2,10,0,0,5,5
1,2,0,5,0,10,0,0,0,5,1,1
0,2,0,2,10,0,5,1,1,5,4,0
0,2,0,2,0,5,0,10,5,2,3,3
6,0,5,10,0,1,10,0,0,0,5,0
2,4,5,0,0,1,5,0,0,0,10,10
1,5,2,0,5,5,2,0,0,0,5,0
1,0,2,5,1,4,3,5,10,5,0,2
1,0,2,5,1,0,3,0,10,0,2,0
ここで、最初の行は行列のサイズを示しますn x n
。 n 行に続く行は行列 D です。次に、n 行に続く行は行列 W です。したがって、行があり2n + 1
ます。
これを解析して変数に入れるコードを次に示します。
func readFile(path string) (int64, Matrix, Matrix) {
// open the file
f, _ := os.Open(path)
defer f.Close()
// init the new reader on the opened file
r := bufio.NewReader(f)
// we get the n value
line, _ := r.ReadString('\n')
splitedLine := strings.Fields(line)
tmp, _ := strconv.ParseInt(splitedLine[0], 10, 64)
n := int64(tmp)
// we init the matrix W and D
D := Matrix{}
D.matrix = make([][]int64, n)
for i, _ := range D.matrix {
D.matrix[i] = make([]int64, n)
}
W := Matrix{}
W.matrix = make([][]int64, n)
for i, _ := range W.matrix {
W.matrix[i] = make([]int64, n)
}
// loop on the n first element
iter := int64(0)
for iter < n {
// we get the n following elements
line, _ = r.ReadString('\n')
for index, ele := range strings.Split(line, ",") {
D.matrix[iter][index], _ = strconv.ParseInt(ele, 10, 64)
}
iter++
}
iter = 0
for iter < n {
// we get the n following elements
line, _ = r.ReadString('\n')
for index, ele := range strings.Split(line, ",") {
W.matrix[iter][index], _ = strconv.ParseInt(ele, 10, 64)
}
iter++
}
return n, W, D
}
W の結果は次のようになります。
[ 0., 1., 2., 3., 1., 2., 3., 4., 2., 3., 4., 5.],
[ 1., 0., 1., 2., 2., 1., 2., 3., 3., 2., 3., 4.],
[ 2., 1., 0., 1., 3., 2., 1., 2., 4., 3., 2., 3.],
[ 3., 2., 1., 0., 4., 3., 2., 1., 5., 4., 3., 2.],
[ 1., 2., 3., 4., 0., 1., 2., 3., 1., 2., 3., 4.],
[ 2., 1., 2., 3., 1., 0., 1., 2., 2., 1., 2., 3.],
[ 3., 2., 1., 2., 2., 1., 0., 1., 3., 2., 1., 2.],
[ 4., 3., 2., 1., 3., 2., 1., 0., 4., 3., 2., 1.],
[ 2., 3., 4., 5., 1., 2., 3., 4., 0., 1., 2., 3.],
[ 3., 2., 3., 4., 2., 1., 2., 3., 1., 0., 1., 2.],
[ 4., 3., 2., 3., 3., 2., 1., 2., 2., 1., 0., 1.],
[ 5., 4., 3., 2., 4., 3., 2., 1., 3., 2., 1., 0.]
しかし、印刷すると; それは私に与えます:
[0 1 2 3 1 2 3 4 2 3 4 0]
[1 0 1 2 2 1 2 3 3 2 3 0]
[2 1 0 1 3 2 1 2 4 3 2 0]
[3 2 1 0 4 3 2 1 5 4 3 0]
[1 2 3 4 0 1 2 3 1 2 3 0]
[2 1 2 3 1 0 1 2 2 1 2 0]
[3 2 1 2 2 1 0 1 3 2 1 0]
[4 3 2 1 3 2 1 0 4 3 2 0]
[2 3 4 5 1 2 3 4 0 1 2 0]
[3 2 3 4 2 1 2 3 1 0 1 0]
[4 3 2 3 3 2 1 2 2 1 0 0]
[5 4 3 2 4 3 2 1 3 2 1 0]
どうしてか分かりません。お返事をありがとうございます。