加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
fifo_test.go 594 Bytes
一键复制 编辑 原始数据 按行查看 历史
LewisJoe 提交于 2016-03-31 14:13 . golang实现的FIFO操作
package golangfifo
import (
"fmt"
"testing"
)
func Test(t *testing.T) {
a := []byte{1, 2, 3, 4, 5}
b := []byte{5, 7, 8, 9}
c := []byte{8, 4, 6, 54, 23}
d := []byte{8, 4, 6, 54, 23}
q := NewQueue()
fmt.Println(q.Enqueue(a).Value)
fmt.Println(q.Enqueue(b).Value)
fmt.Println(q.Enqueue(c).Value)
fmt.Println(q.Enqueue(d).Value)
fmt.Println("The list len is", q.Size())
if e := q.Dequeue(); e != nil {
fmt.Println("The element value is", e.Value)
} else {
fmt.Println("The list is empty...")
}
q.Dequeue()
fmt.Println("When Dequeue the list size is", q.Size())
q.Query()
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化