Code Monkey home page Code Monkey logo

interval-trees-solidity's Introduction

Interval Trees in Solidity

Provides an implementation of the Interval tree data structure, as a library for use in smart contracts.

A deployed version of this library is available at address 0xa7aCE3440fD2D6Afa37d12F18E3A9F25C55D1E47.

API

TreeLib

File contracts/intervals/TreeLib.sol

Usage: import library and use for TreeLib.Tree data structure.

contract HasTree {
  using TreeLib for TreeLib.Tree;

  TreeLib.Tree tree;

  function HasTree() {
    tree.addInterval(5, 9, 0xDEADBEEF);
  }
}

See Example.sol for a contract that maintains a global collection of interval trees.

tree.addInterval(uint begin, uint end, bytes32 data)

  • internal

Adds an interval [begin, end) with data.

tree.search(uint point)

  • constant
  • internal
  • returns (uint[] memory matchingIDs)

Searches the tree for intervals containing point.

Returns memory array of interval IDs, to retrieve with tree.getInterval()

tree.getInterval(uint intervalID)

  • constant
  • internal
  • returns (uint begin, uint end, bytes32 data)

Retrieves interval information for a given interval ID.

Use in conjunction with tree.search().

Notes / Status

  • Supports adding new intervals and finding intervals containing a point
  • No support currently for interval search
  • Creates unbalanced trees

This project uses @pipermerriam's Grove data structure for some underlying behavior.

interval-trees-solidity's People

Contributors

gnidan 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.