Go语言实现:【剑指offer】从尾到头打印链表

该题目来源于牛客网《剑指offer》专题。​

输入一个链表,按链表从尾到头的顺序返回一个ArrayList。

Go语言实现:

type ListNode struct {
Val int
Next *ListNode
}

func fmtListNode(head *ListNode) {
l := list.New()
for ; head != nil; head = head.Next {
l.PushFront(head.Val)
}

for item := l.Front(); item != nil; item = item.Next() {
fmt.Println(item.Value)
}
}
上一篇:Problem. S


下一篇:Could not install Gradle distribution from xxx