Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.141.389 Times

Data Structure Tutorial freeware
Filter: All | Freeware | Demo
 

Data Structure Tutorial

< 1 2 3 4 5 > 
Added: October 21, 2010 | Visits: 1.299

FLV::Header FLV::Header is a flash video file data structure. METHODS This is a subclass of FLV::Base. $self->parse($fileinst) Takes a FLV::File instance and extracts the FLV header from the file stream. This method throws exceptions if the stream is not a valid FLV v1.0 or v1.1 file. The...



Platforms: *nix

License: Freeware Size: 737.28 KB Download (126): FLV::Header Download

Added: April 06, 2010 | Visits: 1.184

FLV::Body FLV::Body is a flash video file data structure. METHODS This is a subclass of FLV::Base. $self->parse($fileinst) Takes a FLV::File instance and extracts the FLV body from the file stream. This method throws exceptions if the stream is not a valid FLV v1.0 or v1.1 file. There is no...





Platforms: *nix

License: Freeware Size: 737.28 KB Download (102): FLV::Body Download

Added: April 07, 2010 | Visits: 1.296

FLV::Tag FLV::Tag is a flash video file data structure. This is a subclass of FLV::Base. $self->parse($fileinst) Takes a FLV::File instance and extracts an FLV tag from the file stream. This method then multiplexes that tag into one of the subtypes: video, audio or meta. This method throws...


Platforms: *nix

License: Freeware Size: 737.28 KB Download (125): FLV::Tag Download

Added: January 15, 2010 | Visits: 842

iCal::Parser iCal::Parser is a Perl module to parse iCalendar files into a data structure. SYNOPSIS use iCal::Parser my $parser=iCal::Parser->new(); my $hash=$parser->parse($file); $parser->parse($another_file); my $combined=$parser->calendar; my $combined=iCal::Parser->new->parse(@files); my...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (119): iCal::Parser Download

Added: October 05, 2013 | Visits: 292

Jdsc Jdsc is a free and easy to use data structure library. You can implement in your favorite appplications. Jdsc is written in the Java programming language.


Platforms: Mac

License: Freeware Size: 460.8 KB Download (41): Jdsc Download

Added: September 04, 2013 | Visits: 453

python-stdnet An object relational mapper library for remote data-structures. Design to work with Redis data-store, but implemented so that other storage systems can be supported in the future. Create a model, register it to a back-end data structure server and create objects. Simple to use and configure.


Platforms: *nix

License: Freeware Size: 194.56 KB Download (39): python-stdnet Download

Added: September 06, 2010 | Visits: 1.088

Config::Framework Config::Framework is a Perl module with handy one-stop shopping for (most) of your configuration file needs. SYNOPSIS #create a new object, load two configuration files and decrypt the passwords. my $Object = new Config::Framework( Files => [ApplicationCfg.xml,UserCfg.xml], GetSecure => 1 )...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (97): Config::Framework Download

Added: October 22, 2010 | Visits: 677

Tk_CreateImageType Tk_CreateImageType is a Perl module to define new kind of image. SYNOPSIS #include < tk.h > Tk_CreateImageType(typePtr) ClientData Tk_GetImageMasterData(interp, name, typePtrPtr) ARGUMENTS Tk_ImageType *typePtr (in) Structure that defines the new type of image. Must be static: a...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (89): Tk_CreateImageType Download

Released: October 15, 2012  |  Added: October 15, 2012 | Visits: 537

GestDB GestDB is a program developed to help users with the access to different database engines at the same time and perform queries, modifications and data structure creations with its contents. How to install: · Uncompress file in a directory. · Copy driver JDBC to directory "lib" · Run program...


Platforms: Windows

License: Freeware Download (50): GestDB Download

Released: November 10, 2012  |  Added: November 10, 2012 | Visits: 463

es-Builder Key Features Highly Customizable - Build your personalized data structure to fit your own need. Lookup - You can enable the "Lookup" feature of each field. It allows you to select the other table's data in easy way. Master-Detail Table - Build a detail table easily. You don't have to learn the...


Platforms: Windows

License: Freeware Size: 26.86 MB Download (55): es-Builder Download

Released: August 22, 2012  |  Added: August 22, 2012 | Visits: 349

Beagle Framework Beagle is a Java lightweight framework to fetch database entries in an optimized data structure.It can be useful in those application that need to a fast data access.It is designed around Agile Methodologies with pattern of Test Driven Development.


Platforms: Windows, Mac, Linux

License: Freeware Size: 252.5 KB Download (48): Beagle Framework Download

Released: July 12, 2012  |  Added: July 12, 2012 | Visits: 416

PCGenDM PCGen Data Manipulation/Management - For the manipulation/management of the data sets (list files) and data structure (directory tree) used within PCGen.


Platforms: Windows, Mac, Linux

License: Freeware Size: 90.91 KB Download (48): PCGenDM Download

Released: July 01, 2012  |  Added: July 01, 2012 | Visits: 304

pygraph Python library for a fast and flexible graph data structure.


Platforms: Windows, Mac, Linux

License: Freeware Size: 150.13 KB Download (44): pygraph Download

Added: May 10, 2013 | Visits: 526

Implementation of sets using sorted lists This script implements set operations using sorted lists as the underlying data structure. Advantages: - Space savings -- lists are much more compact than a dictionary based implementation. - Flexibility -- elements do not need to be hashable, only __cmp__ is required. - Fast operations...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (50): Implementation of sets using sorted lists Download

Added: May 10, 2013 | Visits: 326

Deque collection class This script is a pure python drop in replacement for 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...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (50): Deque collection class Download

Added: May 10, 2013 | Visits: 469

Grouping objects into disjoint sets This class provides a lightweight way to group arbitrary objects together into disjoint sets when a full-blown graph data structure would be overkill. Objects can be joined using .join(), tested for connectedness using joined(), and all disjoint sets can be retreived using get(). The objects...


Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (58): Grouping objects into disjoint sets Download

Added: May 10, 2013 | Visits: 455

GNU Common C GNU Common C is a portable and highly optimized class framework for writing C applications that need to use threads and support concurrent sychronization, and that use sockets, XML parsing, serialization, config files, thread-optimized String and data structure classes, etc. This framework offers...


Platforms: *nix, C/C++, BSD

License: Freeware Download (53): GNU Common C Download

Added: May 10, 2013 | Visits: 701

Perl Entrez Gene Parser This program is a parser that abstract a data structure from a given Entrez Gene record, and users of the parser can decide what to do/extract from the data structure. Perl Entrez Gene Parser project provides Perl parsers for NCBI's Entrez Gene based on regular expression, Parse::RecDescent,...


Platforms: Windows, Mac, *nix, Perl, BSD Solaris

License: Freeware Download (65): Perl Entrez Gene Parser Download

Added: June 06, 2013 | Visits: 516

Mat Nanny v1.0 - RSS and html progress reports MatNanny is a simple function which publishes a data structure as html and an RSS feed when called. This allows for convenient remote checking on the progress of models or other computations which have been left running while away from the office. I recommend using free webspace on xthost.info as...


Platforms: Matlab

License: Freeware Size: 10 KB Download (40): Mat Nanny v1.0 - RSS and html progress reports Download

Added: July 07, 2013 | Visits: 464

Data Structure Invaders This year's art gallery has an evolutionary theme, beginning with the fight or flight evolutionary strategies, then moving on to the effects of ancestral and alien DNA, and the hunter-gatherer survival technique. Some of the entries in this year's art gallery have warning stickers on. One kind...


Platforms: Mac

License: Freeware Size: 266.24 KB Download (39): Data Structure Invaders Download

< 1 2 3 4 5 >