An interval mapping data structure

An interval mapping data structure 1.2

An interval mapping data structure 1.2 Download Summary

  • Language: Python
  • Platform: Windows / Linux / Mac OS / BSD / Solaris
  • License: Other Free / Open Source License - Python License
  • Databases: N/A
  • Downloads: 434
  • Released: Jun 7, 2007

An interval mapping data structure 1.2 Description

This structure is a kind of dictionary which allows you to map data intervals to values.

You can then query the structure for a given point, and it returns the value associated to the interval which contains the point.Boundary values don't need to be an integer ; in the test unit a date-time object is used. the testThis class uses bisect to ensure a O(log2 n) insert and lookup time.

The insert algorithm tries to do "the right thing" when overlapping intervals are inserted. As a general rule, an inserted interval overrides every other mapping which was defined.

An interval mapping data structure 1.2 Keywords

An interval mapping data structure Bookmark

Hyperlink code:
Hyperlink for Forum code:

An interval mapping data structure 1.2 Script Download Notice

Top 4 Download periodically updates information of An interval mapping data structure 1.2 script from the developer, but some information may be slightly out-of-date.

Our script download links are directly from our mirrors or publisher's website. An interval mapping data structure 1.2 torrent files or shared files from free file sharing and free upload services, including Rapidshare, MegaUpload, YouSendIt, MailBigFile, DropSend, HellShare, HotFile, FileServe, MediaMax, zUpload, MyOtherDrive, SendSpace, DepositFiles, Letitbit, LeapFile, DivShare or MediaFire, are not allowed!

Python Octree Implementation

This script is a simple implementation of an octree data structure in python. Its use is primarily for fast collision or view frustrum culling in interactive 3d environments, but its possible uses are quite open-ended. It was originally written for use with the pyOgre 3d engine binding. The code makes use ...
Python

Deque collection class

... collections.deque(). It uses a dictionary as the underlying data structure for the deque (pronounced "deck", short for "double-ended queue", a generalization of stacks and queues) which provides O(1) performance for appends and pops from either end.   ...
Python

A queue for string data

This script is a queue data structure, for string data only, which looks like a File object. This class takes care of the list.append and .join mess, which is needed for fast string concatenation. ...
Python

z crypt

This module show a way to simple data encryption. Characters are mapped to a key via ... simple, this is a good method for encrypting data if the data is compressed before or after the encryption process. ... select argument should either be True or False. Data encrypted with "True" of a definition can be ...
Python

Rating class with mapping interface

Rating class with mapping interface script deals with items sorted by value and accessed by key or rating index. ...
Python