加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

Go语言实现的树形结构数据比较算法实例

发布时间:2020-12-16 19:33:55 所属栏目:大数据 来源:网络整理
导读:本篇章节讲解Go语言实现的树形结构数据比较算法。供大家参考研究。具体实现方法如下: 复制代码 代码如下: // Two binary trees may be of different shapes, // but have the same contents. For example: // // 4 6 // 2 6 4 7 // 1 3 5 7 2 5 //

本篇章节讲解Go语言实现的树形结构数据比较算法。分享给大家供大家参考。具体实现方法如下:

复制代码 代码如下:

// Two binary trees may be of different shapes,
// but have the same contents. For example:
//
//        4               6
//      2   6          4     7
//     1 3 5 7       2   5
//                  1 3
//
// Go's concurrency primitives make it easy to
// traverse and compare the contents of two trees
// in parallel.

package main
import (
 "fmt"
 "rand"
)

// A Tree is a binary tree with integer values.
type Tree struct {
 Left  *Tree
 Value int
 Right *Tree
}

// Walk traverses a tree depth-first,
// sending each Value on a channel.
func Walk(t *Tree,ch chan int) {
 if t == nil {
  return
 }
 Walk(t.Left,ch)
 ch <- t.Value
 Walk(t.Right,ch)
}

// Walker launches Walk in a new goroutine,
// and returns a read-only channel of values.
func Walker(t *Tree) <-chan int {
 ch := make(chan int)
 go func() {
  Walk(t,ch)
  close(ch)
 }()
 return ch
}

// Compare reads values from two Walkers
// that run simultaneously,and returns true
// if t1 and t2 have the same contents.
func Compare(t1,t2 *Tree) bool {
 c1,c2 := Walker(t1),Walker(t2)
 for <-c1 == <-c2 {
  if closed(c1) || closed(c1) {
   return closed(c1) == closed(c2)
  }
 }
 return false
}

// New returns a new,random binary tree
// holding the values 1k,2k,...,nk.
func New(n,k int) *Tree {
 var t *Tree
 for _,v := range rand.Perm(n) {
  t = insert(t,(1+v)*k)
 }
 return t
}

func insert(t *Tree,v int) *Tree {
 if t == nil {
  return &Tree{nil,v,nil}
 }
 if v < t.Value {
  t.Left = insert(t.Left,v)
  return t
 }
 t.Right = insert(t.Right,v)
 return t
}

func main() {
 t1 := New(1,100)
 fmt.Println(Compare(t1,New(1,100)),"Same Contents")
 fmt.Println(Compare(t1,99)),"Differing Sizes")
 fmt.Println(Compare(t1,New(2,"Differing Values")
 fmt.Println(Compare(t1,101)),"Dissimilar")
}

希望本文所述对大家的Go语言程序设计有所帮助。

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读