mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
272 B
23 lines
272 B
5 years ago
|
package solutions
|
||
|
|
||
|
type NodeL struct {
|
||
|
Data interface{}
|
||
|
Next *NodeL
|
||
|
}
|
||
|
|
||
|
type List struct {
|
||
|
Head *NodeL
|
||
|
Tail *NodeL
|
||
|
}
|
||
|
|
||
|
func ListPushBack(l *List, data interface{}) {
|
||
|
n := &NodeL{Data: data}
|
||
|
|
||
|
if l.Head == nil {
|
||
|
l.Head = n
|
||
|
} else {
|
||
|
l.Tail.Next = n
|
||
|
}
|
||
|
l.Tail = n
|
||
|
}
|