Golang writing two-fork search tree Exercises

Source: Internet
Author: User
This is a creation in Article, where the information may have evolved or changed.

Package Mainimport ("FMT") type Item struct {key Int}type tree struct {lchild, rchild *treeitem itemcount Int}func Compare (x, y Item) int {var ret intswitch {case X.key > y.key:ret = 1case X.key = = Y.key:ret = 0case X.key & Lt Y.key:ret = -1}return ret}func Create (t *tree, x Item) *tree {if T = = Nil {T = new (tree) T.item = Xt.count = 1} else if com Pare (t.item, x) = = 1 {t.lchild = Create (T.lchild, x)} else if compare (T.item, x) = = 0 {t.count++} else {t.rchild = Create (  T.rchild, x)}return T}func search (t *tree, x Item) *tree {if T = = nil {return nil} else if compare (T.item, x) = = 1 {return Search (T.lchild, x)} else if compare (T.item, x) = =-1 {return search (T.rchild, x)}return T}func main () {var root *treet: = Create (root, item{89}) root = Tiarr: = []int{1, 0}for, Iarr, 98, Si, Si, J, 4,, I: = Range T.PRINTLN (i) Create (root, item{i})}s: = Search (root, item{96}) fmt. PRINTLN (s) s = search (root, item{4}) fmt. PRINTLN (s) s = search (root, item{0}) FMT. PRINTLN (s) s = search (root, item{989}) fmt. Println (s) fmt. Println (Root)}


Results:


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.