Skip to content

Instantly share code, notes, and snippets.

View violarulan's full-sized avatar

Choco violarulan

  • Qiqihar
View GitHub Profile
@violarulan
violarulan / Stack.go
Created July 6, 2017 15:32 — forked from dz1984/Stack.go
Implement the Stack and Queue class through "container/list" package. golang version: 1.2
package main
import (
"container/list"
"fmt"
"sync"
)
// Define Stack class
type Stack struct {