摘要: 栈 先进后出 应用 示例代码: container/list标准库实现 package main import ( "container/list" "fmt" "sync" ) type Stack struct { l *list.List lock *sync.RWMutex } // New 阅读全文
posted @ 2022-02-17 21:51 自己有自己的调调、 阅读(65) 评论(0) 推荐(1) 编辑