Go语言用map实现堆栈功能的方法
程序员文章站
2022-05-14 20:54:21
本文实例讲述了go语言用map实现堆栈功能的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:package stack
import (
&nbs...
本文实例讲述了go语言用map实现堆栈功能的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:
package stack
import (
"strconv"
)
type stack struct {
quenu map[int]int
}
func new() *stack{
s := new(stack)
s.quenu = make(map[int]int)
return s
}
func (s *stack) push(i int) {
s.quenu[len(s.quenu)] = i
}
func (s *stack) pop() {
delete(s.quenu, len(s.quenu)-1)
}
func (s *stack) string() string {
info := ""
for i := 0; i < len(s.quenu); i++ {
info = info + "[" + strconv.itoa(i) + "," + strconv.itoa(s.quenu[i]) + "]"
}
return info
}
import (
"strconv"
)
type stack struct {
quenu map[int]int
}
func new() *stack{
s := new(stack)
s.quenu = make(map[int]int)
return s
}
func (s *stack) push(i int) {
s.quenu[len(s.quenu)] = i
}
func (s *stack) pop() {
delete(s.quenu, len(s.quenu)-1)
}
func (s *stack) string() string {
info := ""
for i := 0; i < len(s.quenu); i++ {
info = info + "[" + strconv.itoa(i) + "," + strconv.itoa(s.quenu[i]) + "]"
}
return info
}
希望本文所述对大家的go语言程序设计有所帮助。