中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

二叉樹操作

發布時間:2020-05-25 23:32:47 來源:網絡 閱讀:318 作者:類似簡單 欄目:編程語言
package main

import "fmt"

type Node struct {
    Key int
    Left * Node
    Right * Node
}

func (n *Node) Insert(key int)  {
    if key < n.Key{
        if n.Left == nil{
            n.Left = &Node{Key:key}
        }
        n.Left.Insert(key)
    }else if key > n.Key{
        if n.Right == nil{
            n.Right = &Node{Key:key}
        }
        n.Right.Insert(key)
    }
}

//中序打印
func (n * Node)print()  {
    if n == nil{
        return
    }
    n.Left.print()
    fmt.Println(n.Key)
    n.Right.print()
}

//前序打印
func (n * Node)printpre()  {
    if n == nil{
        return
    }
    fmt.Println(n.Key)
    n.Left.printpre()
    n.Right.printpre()
}

//后序打印
func (n * Node)printend()  {
    if n == nil{
        return
    }

    n.Left.printend()
    n.Right.printend()
    fmt.Println(n.Key)
}

//查詢
func (n * Node)Search(key int) bool {
    if n == nil{
        return false
    }
    if n.Key < key{
        n.Right.Search(key)
    }else if n.Key > key{
        return n.Left.Search(key)
    }
    return true
}

//刪除

func (n * Node)Delete(key int) *Node  {
    if n == nil{
        return nil
    }
    if n.Key < key{
        n.Right = n.Right.Delete(key)
    }else if n.Key > key{
        n.Left = n.Left.Delete(key)
    }else {
        if n.Left == nil{
            return n.Right
        }else if n.Right == nil{
            return n.Left
        }else {
            min := n.Right.Min()
            n.Key = min
            n.Right = n.Right.Delete(min)
        }
    }
    return n
}

//求最小值
func (n *Node)Min() int  {
    if n.Left==nil{
        return n.Key
    }
    return n.Left.Min()
}

func main()  {

    root := &Node{Key:8}
    root.Insert(3)
    root.Insert(10)
    root.Insert(1)
    root.Insert(6)
    root.Insert(14)
    root.Insert(4)
    root.Insert(7)
    root.Insert(13)
    fmt.Println("=====================中序打印==================================")
    root.print()
    fmt.Println("======================前序打印================================")
    root.printpre()
    fmt.Println("=======================后序打印================================")
    root.printend()

    if root.Search(10){
        fmt.Println("found")
    }else {
        fmt.Println("not found")
    }
    if root.Search(100){
        fmt.Println("found")
    }else {
        fmt.Println("not found")
    }
    if root.Search(0){
        fmt.Println("found")
    }else {
        fmt.Println("not found")
    }

    root.Delete(6)
    root.Delete(3)
    root.print()
}
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

赣州市| 巨野县| 江北区| 博兴县| 庆安县| 上杭县| 读书| 略阳县| 昭平县| 靖江市| 嘉义县| 惠东县| 乌鲁木齐县| 衡南县| 新和县| 樟树市| 遵义县| 唐海县| 宿松县| 江口县| 乌兰县| 大石桥市| 云霄县| 道孚县| 兴海县| 舟曲县| 苗栗市| 尼勒克县| 包头市| 沧源| 田阳县| 龙口市| 洪洞县| 汉阴县| 海口市| 东台市| 深州市| 勐海县| 光山县| 宝坻区| 衡山县|