start to clone warehouse

This commit is contained in:
cuu
2021-10-20 01:34:36 +08:00
parent 21ae3d9358
commit 23b2f6caf8
12 changed files with 1102 additions and 3 deletions

View File

@@ -0,0 +1,64 @@
package Warehouse
import (
"sync"
)
type element struct {
data interface{}
next *element
}
type WareHouseStack struct {
lock *sync.Mutex
head *element
Size int
}
func (stk *WareHouseStack) Push(data interface{}) {
stk.lock.Lock()
element := new(element)
element.data = data
temp := stk.head
element.next = temp
stk.head = element
stk.Size++
stk.lock.Unlock()
}
func (stk *WareHouseStack) Pop() interface{} {
if stk.head == nil {
return nil
}
stk.lock.Lock()
r := stk.head.data
stk.head = stk.head.next
stk.Size--
stk.lock.Unlock()
return r
}
func (stk *WareHouseStack) Length() int {
return stk.Size
}
func (stk *WareHouseStack) Last() interface{} {
idx := stk.Length() -1
if idx < 0 {
return nil
} else {
return stk.head.data
}
}
func NewWareHouseStack() *WareHouseStack {
stk := new(WareHouseStack)
stk.lock = &sync.Mutex{}
return stk
}