代码拉取完成,页面将自动刷新
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()
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。