摘要:
package main import ( "errors" "fmt" "os" ) // CircleQueue 环形队列 type CircleQueue struct { maxSize int arr [5]int head int // 队首 tail int // 队尾 } func 阅读全文
摘要:
本队列有问题, 单向的,需要优化尾环形队列 package main import ( "errors" "fmt" "os" ) type Queue struct { maxSize int arr [4]int // 数组模拟队列 front int // 指向队列的最前面 队首 rear i 阅读全文
摘要:
package main import "fmt" type Node struct { Row int Col int Value int } // 稀疏数组 func main() { sparse := ToSparse() ToArray(sparse) } // ToArray 稀疏数组恢 阅读全文
摘要:
HomeBrew简介 我们在使用Linux系统的时候,都很喜欢 (Debian/Ubuntu)系列的apt包管理系统和(Redhat/Fedora)系列的yum包管理系统。Mac OS X系统下面有apple的官方Mac App Store。但是好多软件是找不到的,所以我们也向在苹果下找到一款比较方 阅读全文