Giter Club home page Giter Club logo

binarytree's Introduction

BinaryTree

使用Swift实现了BinarySearchTree、AVLTree、RedBlackTree。以及支持输出到控制台console中。

红黑树使用:

let elements = [4, 75, 82, 85, 36, 20, 21, 84, 55, 51, 11, 25, 32, 15, 57, 3]
let rbTree = RedBlackTree<Int>()
elements.forEach { (element) in
    rbTree.add(element)
}
debugPrint(rbTree)//打印

控制台输出:

                             36
                ____________/  \___________
              20                           75
          ___/  \__                  _____/  \_____
     [R]11         25              55              84
      / \         /  \            /  \            /  \
     4   15  [R]21    [R]32  [R]51    [R]57  [R]82    [R]85
    /
[R]3

[R] 代表红色节点,可自定义输出内容:

class RedBlackNode<Element: Comparable>: Node<Element> {
    
		....
    override var debugDescription: String {
        
        return (color == .black ? "" : "[R]") + "\(element)"
      
    }
}

二叉树打印到控制台,参考自:

https://stackoverflow.com/questions/43898440/how-to-draw-a-binary-tree-in-console/43903427

binarytree's People

Contributors

wuqihan-1993 avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.