Go 语言程序逆序给定链表。


示例

解决此问题的方法

步骤 1 − 定义一个接收链表头的方法。

步骤 2 − 如果 head == nil,返回;否则,递归调用 ReverseLinkedList

步骤 3 − 最后打印 head.value

示例

 在线演示

package main
import "fmt"
type Node struct {
   value int
   next *Node
}
func NewNode(value int, next *Node) *Node{
   var n Node
   n.value = value
   n.next = next
   return &n
}
func TraverseLinkedList(head *Node){
   fmt.Printf("Input Linked List is: ")
   temp := head
   for temp != nil {
      fmt.Printf("%d ", temp.value)
      temp = temp.next
   }
   fmt.Println()
}
func ReverseLinkedList(head *Node){
   if head == nil{
      return
   }
   ReverseLinkedList(head.next)
   fmt.Printf("%d ", head.value)
}
func main(){
   head := NewNode(30, NewNode(10, NewNode(40, NewNode(40, nil))))
   TraverseLinkedList(head)
   fmt.Printf("Reversal of the input linked list is: ")
   ReverseLinkedList(head)
}

输出

Input Linked List is: 30 10 40 40
Reversal of the input linked list is: 40 40 10 30

更新于:2021 年 3 月 18 日

2K+ 查看次数

开启你的 职业道路

完成课程即可获得认证

开始使用
广告