摘要: 1 package main 2 3 import ( 4 "fmt" 5 "errors" 6 "os" 7 ) 8 9 //管理环形队列的结构 10 type Queue struct { 11 maxSize int 12 array [5]int 13 head int 14 tai... 阅读全文
posted @ 2018-12-03 16:58 kosa 阅读(988) 评论(0) 推荐(0) 编辑