摘要: 稀疏数组实现: package main import "fmt" type SparseArray struct { col int row int value int } func main() { // 源数据格式: /* 0 0 0 2 0 0 0 0 0 0 0 0 1 0 0 0 0 0 阅读全文
posted @ 2022-09-25 22:26 萤huo虫 阅读(16) 评论(0) 推荐(0) 编辑