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.476.295 Times

Hash Table Algorithm freeware
Filter: All | Freeware | Demo
 

Hash Table Algorithm

< 1 2 3 4 5 > 
Added: May 16, 2010 | Visits: 595

Libcfu Libcfu is a library of tools that I have found useful, particularly when developing multithreaded software. It includes a hash table, a linked list, self-extending strings, a config file parser, a simple timer, a thread queue, and command-line parser. Installation: The `configure shell script... Platforms: *nix

License: Freeware Size: 194.56 KB Download (88): Libcfu Download

Added: November 22, 2010 | Visits: 895

ScraperPOD ScraperPOD is a framework for scraping results from search engines. SYNOPSIS use WWW::Scraper; # Name your Scraper module / search engine as the first parameter, use WWW::Scraper(eBay); # or in the new() method $scraper = new WWW::Scraper(eBay); Classic WWW::Search mode # Use a... Platforms: *nix

License: Freeware Size: 102.4 KB Download (104): ScraperPOD Download

Added: June 03, 2010 | Visits: 1.300

C Generic Library C Generic Library is a generic data structure library is a bunch of data structures that are designed and created in as generic a fashion as possible. Each data structure will contain its own basic memory management, be able to handle any object type, and hopefully constraint to strict... Platforms: *nix

License: Freeware Size: 26.62 KB Download (108): C Generic Library Download

Added: March 01, 2010 | Visits: 951

QDBM: Quick DataBase Manager QDBM is a library of routines for managing a database. The QDBM database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is... Platforms: *nix

License: Freeware Size: 890.88 KB Download (95): QDBM: Quick DataBase Manager Download

Added: April 02, 2010 | Visits: 803

Storable Storable package contains persistence for Perl data structures. SYNOPSIS use Storable; store %table, file; $hashref = retrieve(file); use Storable qw(nstore store_fd nstore_fd freeze thaw dclone); # Network order nstore %table, file; $hashref = retrieve(file); # There is NO... Platforms: *nix

License: Freeware Size: 174.08 KB Download (89): Storable Download

Added: June 07, 2010 | Visits: 567

PApp::Storable Storable module is a persistence for Perl data structures. SYNOPSIS use Storable; store %table, file; $hashref = retrieve(file); use Storable qw(nstore store_fd nstore_fd freeze thaw dclone); # Network order nstore %table, file; $hashref = retrieve(file); # There is NO nretrieve() #... Platforms: *nix

License: Freeware Size: 399.36 KB Download (88): PApp::Storable Download

Added: June 27, 2010 | Visits: 628

Class::Classless Class::Classless is a Perl framework for classless OOP. SYNOPSIS use strict; use Class::Classless; my $ob1 = $Class::Classless::ROOT->clone; $ob1->{NAME} = Ob1; $ob1->{stuff} = 123; $ob1->{Thing} = 789; my $ob2 = $ob1->clone; $ob2->{NAME} = Ob2; printf "ob1 stuff: <%s>n",... Platforms: *nix

License: Freeware Size: 23.55 KB Download (92): Class::Classless Download

Added: April 14, 2010 | Visits: 814

CL-EMB CL-EMB is a library to embed Common Lisp and special template tags into normal text files. CL-EMB library can be used for dynamically generated HTML pages. Installation: CL-EMB can be installed with ASDF-INSTALL. See http://weitz.de/asdf-install/ for further information. Usage: [generic... Platforms: *nix

License: Freeware Size: 12.29 KB Download (100): CL-EMB Download

Added: March 13, 2010 | Visits: 776

dcache dcache is a database library implementing a persistent first-in-first-out cache. The database (or `cache) size limits are configured at creation time, and as soon as they are reached the oldest records are automatically removed. dcache library has a number of commandline tools for managing... Platforms: *nix

License: Freeware Size: 89.09 KB Download (88): dcache Download

Added: August 08, 2010 | Visits: 788

QWizard QWizard is a Perl module that can display a series of questions, get the answers, and act on the answers. SYNOPSIS # # The following code works as a application *or* as a CGI script both: # use QWizard; my %primaries = ( starting_node => { title => "starting here", introduction =>... Platforms: *nix

License: Freeware Size: 81.92 KB Download (91): QWizard Download

Released: August 23, 2012  |  Added: August 23, 2012 | Visits: 542

BitRope P2P BitRope is a powerful, far-reaching p2p (peer-to-peer) client, capable of downloading any movies, applications, games and its special talent - individual songs, fast and safely. It connects you to a large number of sources to download from (peers) due to the highly capable Gnutella networks it... Platforms: Windows

License: Freeware Size: 10.7 MB Download (52): BitRope P2P Download

Released: January 11, 2013  |  Added: January 11, 2013 | Visits: 962

KoolWire P2P KoolWire P2P is a newly developed p2p client which means you have the latest file sharing technology working on your side to make that downloading experience the best that you have ever had. Inspired by the worldwide popular Limewire, this software leaps forward to offer even more convenience and... Platforms: Windows

License: Freeware Size: 12.43 MB Download (438): KoolWire P2P Download

Added: July 16, 2010 | Visits: 701

DBIx::TableHash DBIx::TableHash is a Perl module that can tie a hash to a mysql table + SQL utils. SYNOPSIS use DBIx::TableHash; my $DBHash = DBIx::TableHash->create_or_die (my $Params = { DBIDriver => mysql, Database => mydatabase, HostName => localhost, Port => undef, Login => , Password => ,... Platforms: *nix

License: Freeware Size: 17.41 KB Download (102): DBIx::TableHash Download

Added: June 02, 2010 | Visits: 1.108

CGI::AppBuilder::Table CGI::AppBuilder::Table module contains a configuration initializer. SYNOPSIS use CGI::AppBuilder::Table; my $ab = CGI::AppBuilder::Table->new( ifn, my_init.cfg, opt, vhS:a:); my ($q, $ar, $ar_log) = $ab->start_app($0, %ARGV); print $ab->disp_form($q, $ar); This class provides methods... Platforms: *nix

License: Freeware Size: 12.29 KB Download (92): CGI::AppBuilder::Table Download

Added: July 09, 2010 | Visits: 912

Algorithm::Huffman Algorithm::Huffman is a Perl extension that implements the Huffman algorithm. SYNOPSIS use Algorithm::Huffman; my %char_counting = map {$_ => int rand(100)} (a .. z, A .. Z); # or better the real counting for your characters # as the huffman algorithm doesnt work good with random data... Platforms: *nix

License: Freeware Size: 8.19 KB Download (110): Algorithm::Huffman Download

Added: July 09, 2010 | Visits: 973

Algorithm::SocialNetwork Algorithm::SocialNetwork is a social network analysis. SYNOPSIS use Graph::Undirected; use Algorithm::SocialNetwork; my $G = Graph::Undirected->new(); $G->add_edges([qw(a b)], [qw(b c)]); my $algo = Algorithm::SocialNetwork->new(graph => $G3); my $BC = $algo->BetweenessCentrality(); #... Platforms: *nix

License: Freeware Size: 9.22 KB Download (104): Algorithm::SocialNetwork Download

Released: July 10, 2012  |  Added: July 10, 2012 | Visits: 1.447

Algorithm::Pair::Best Algorithm::Pair::Best is a Perl module to select pairings (designed for Go tournaments, but can be used for anything, really). SYNOPSIS use Algorithm::Pair::Best; my $pair = Algorithm::Pair::Best->new( ? options ? ); $pair->add( item, ? item, ... ? ); @pairList = $pair->pick( ? $window... Platforms: *nix

License: Freeware Size: 10.24 KB Download (118): Algorithm::Pair::Best Download

Released: November 25, 2012  |  Added: November 25, 2012 | Visits: 663

Hash Me! Hash Me! is a handy and reliable application designed to generate hashed passwords. You can save your own template on XML file and choose several hash options. It's developed in Windows Form C# and if you are tired to search hashing website, you are in the right place! It is possible to choose... Platforms: Windows

License: Freeware Download (422): Hash Me! Download

Released: September 17, 2012  |  Added: September 17, 2012 | Visits: 834

Hash Codes Hash Codes is a simple and easy to use application designed to enable users to hash data from keyboard, file or CD/DVD. This tool supports: Adler32, CRC32, CRC64, MD2, MD4, MD5, MD6, SHA-0, SHA-1, SHA-1-IME, SHA-224, SHA-256, SHA-384, SHA-512, RIPEMD-128, RIPEMD-160, RIPEMD-256, RIPEMD-320 or... Platforms: Windows, Windows Vista, 7

License: Freeware Download (423): Hash Codes Download

Released: December 23, 2012  |  Added: December 23, 2012 | Visits: 499

Hash Codes x64 Hash Codes is a simple and easy to use application designed to enable users to hash data from keyboard, file or CD/DVD. This tool supports: Adler32, CRC32, CRC64, MD2, MD4, MD5, MD6, SHA-0, SHA-1, SHA-1-IME, SHA-224, SHA-256, SHA-384, SHA-512, RIPEMD-128, RIPEMD-160, RIPEMD-256, RIPEMD-320 or... Platforms: Windows

License: Freeware Size: 430 KB Download (424): Hash Codes x64 Download

< 1 2 3 4 5 >