-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue.go
52 lines (41 loc) · 939 Bytes
/
queue.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package main
import (
"fmt"
)
// Step 1. This is our generic data queue.
// Queue is a list of data, with FIFO semantics.
type Queue TODO
// PutAny adds an element to the queue.
func (c *Queue) PutAny(elem interface{}) {
TODO
}
// GetAny removes an element from the queue.
// If the queue is empty, return an error.
func (c *Queue) GetAny() (interface{}, error) {
TODO
}
// Step 2. Write a type-safe wrapper for int values.
type IntQueue TODO
// Through Put(), nothing but an int type can
// enter the list
func (ic *IntQueue) Put(n int) {
TODO
}
// Get returns the type-asserted int value.
func (ic *IntQueue) Get() (int, error) {
TODO
}
// The calling code does the type assertion when retrieving an element.
func main() {
ic := IntQueue{}
ic.Put(7)
ic.Put(42)
for i := 0; i < 3; i++ {
elem, err := ic.Get()
if err != nil {
fmt.Println("Error:", err)
return
}
fmt.Printf("Got: %d (%[1]T)\n", elem)
}
}