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

Searching Algorithm freeware
Filter: All | Freeware | Demo
 

Searching Algorithm

1 2 3 4 5 > 
Added: May 10, 2013 | Visits: 636

SMAWK totally monotone matrix searching algorithm This SMAWK algorithm takes as input a function for computing matrix values, and searches for the position of maximum value in each row. The matrix must satisfy the "totally monotone" property: in each submatrix (in particular each 2x2 submatrix) the positions of the maxima must move leftward as... Platforms: Windows, Mac, *nix, Python, BSD Solaris


Added: May 10, 2013 | Visits: 528

Boyer-Moore-Horspool string searching This script implements a string searching algorithm based upon Boyer-Moore string searching, which is considered one of the most efficient string searching algorithms. Boyer-Moore-Horspool only uses the bad-suffix window for matching and is therefore simpler to implement and faster than normals... Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (60): Boyer-Moore-Horspool string searching Download

Added: August 27, 2013 | Visits: 199

FastSS FastSS is a string similarity searching algorithm. For each query, which consists of query string s and distance d, it retrieves all the words in a dictionary whose edit distance from s is equal or smaller than d. FastSS is an offline searching algorithm, as it needs to create an index of its... Platforms: *nix

License: Freeware Size: 20.48 KB Download (38): FastSS Download

Added: March 04, 2010 | Visits: 783

Search::FreeText Search::FreeText is a free text indexing module for medium-to-large text corpuses. SYNOPSIS my $test = new Search::FreeText(-db => [DB_File, "stories.db"]); $text->open_index(); $text->clear_index(); $text->index_document(1, "Hello world"); $text->index_document(2, "World in motion");... Platforms: *nix

License: Freeware Size: 10.24 KB Download (95): Search::FreeText Download

Added: May 10, 2013 | Visits: 946

Perlfect Search Perlfect Search is an integrated, general purpose, site indexer and search engine. It comes as a pair of disctinct scripts. The indexer, that automatically, scans and indexes a web site, and the search engine, a cgi script that serves search queries for keywords over the index, and displays... Platforms: Windows, Mac, *nix, Perl, BSD Solaris

License: Freeware Download (64): Perlfect Search Download

Added: September 10, 2013 | Visits: 658

golden section method algorithm Golden section method - searching for minimum of the function on given interval files:golden.m - main algorithm, computing minimum on intervalf.m - given function - file to modify by the user! Platforms: Matlab

License: Freeware Size: 10 KB Download (49): golden section method algorithm Download

Added: February 03, 2010 | Visits: 851

Algorithm::SkipList Algorithm::SkipList is a Perl implementation of skip lists. SYNOPSIS my $list = new Algorithm::SkipList(); $list->insert( key1, value ); $list->insert( key2, another value ); $value = $list->find(key2); $list->delete(key1); This is an implementation of skip lists in Perl. Skip... Platforms: *nix

License: Freeware Size: 30.72 KB Download (117): Algorithm::SkipList Download

Added: March 20, 2010 | Visits: 2.261

Algorithm::LUHN Algorithm::LUHN is a Perl module to calculate the modulus 10 double add double checksum. SYNOPSIS use Algorithm::LUHN qw/check_digit is_valid/; $c = check_digit("43881234567"); print "It worksn" if is_valid("43881234567$c"); $c = check_digit("A2C4E6G8"); # this will cause an error... Platforms: *nix

License: Freeware Size: 4.1 KB Download (510): Algorithm::LUHN Download

Added: February 09, 2010 | Visits: 903

Algorithm::AhoCorasick Algorithm::AhoCorasick provides efficient search for multiple strings. Aho-Corasick is a classic (1975) algorithm for locating elements of a finite set of strings within an input text. It constructs a finite state machine from a list of keywords, then uses the machine to locate all occurrences... Platforms: *nix

License: Freeware Size: 5.12 KB Download (144): Algorithm::AhoCorasick Download

Added: August 13, 2013 | Visits: 747

Particle Swarm Optimization Simulation An animated simulation of Particles in 2D searching for a global minima of a simple function using Particle Swarm Optimization algorithm Platforms: Matlab

License: Freeware Size: 10 KB Download (54): Particle Swarm Optimization Simulation Download

Added: June 04, 2013 | Visits: 411

Harmony Element Algorithm We propose a new global optimization algorithm based on a harmony search scheme, termed as harmony element string algorithm (abbreviated as HEA). The algorithm has five fundamental features: (1) The states of the system is represented by strings of elements {0,1,2,3,4} and hence the search of the... Platforms: Matlab

License: Freeware Size: 276.48 KB Download (42): Harmony Element Algorithm Download

Added: April 02, 2013 | Visits: 496

Quasi Linearization for Optimal Control Trajectory This programme implements Quasi Linearization Algorithm for searching optimal control trajectory, implemented for example of CSTR from book of Optimal Control Engineering by KIRK, Platforms: Matlab

License: Freeware Size: 10 KB Download (45): Quasi Linearization for Optimal Control Trajectory Download

Added: July 12, 2013 | Visits: 714

Five elements algorithm The harmony elements algorithm is proposed as a global searching technique of numerical computing which inspired by the old Chinese philosophy: Doctrine of Wu Xing, the five color theorem, and the Hoffman-Singleton graph. According to operation of overcoming and generating policy, each element in... Platforms: Matlab

License: Freeware Size: 276.48 KB Download (53): Five elements algorithm Download

Added: January 18, 2010 | Visits: 1.066

Algorithm::Dependency Algorithm::Dependency is a base class for implementing various dependency trees. SYNOPSIS use Algorithm::Dependency; use Algorithm::Dependency::Source::File; # Load the data from a simple text file my $data_source = Algorithm::Dependency::Source::File->new( foo.txt ); # Create the... Platforms: *nix

License: Freeware Size: 46.08 KB Download (121): Algorithm::Dependency Download

Added: October 17, 2010 | Visits: 2.253

Algorithm::Knapsack Algorithm::Knapsack is a brute-force algorithm for the knapsack problem. SYNOPSIS use Algorithm::Knapsack; my $knapsack = Algorithm::Knapsack->new( capacity => $capacity, weights => @weights, ); $knapsack->compute(); foreach my $solution ($knapsack->solutions()) { foreach my $index... Platforms: *nix

License: Freeware Size: 4.1 KB Download (209): Algorithm::Knapsack Download

Added: March 22, 2010 | Visits: 903

Algorithm::DiffOld Algorithm::DiffOld is a Perl module to compute `intelligent differences between two files / lists but use the old (<=0.59) interface. NOTE This has been provided as part of the Algorithm::Diff package by Ned Konz. This particular module is ONLY for people who HAVE to have the old interface,... Platforms: *nix

License: Freeware Size: 23.55 KB Download (95): Algorithm::DiffOld Download

Added: April 09, 2010 | Visits: 1.032

Algorithm::Loops Algorithm::Loops is a Perl module with looping constructs: NestedLoops, MapCar*, Filter, and NextPermute*. SYNOPSYS use Algorithm::Loops qw( Filter MapCar MapCarU MapCarE MapCarMin NextPermute NextPermuteNum NestedLoops ); my @copy= Filter {tr/A-Z.,"()/a-z/d} @list; my $string= Filter... Platforms: *nix

License: Freeware Size: 22.53 KB Download (108): Algorithm::Loops Download

Added: April 26, 2010 | Visits: 4.215

Algorithm::Diff::Apply Algorithm::Diff::Apply is a Perl module to apply one or more Algorithm::Diff diffs. SYNOPSIS ## Single-diff form: use Algorithm::Diff::Apply qw{apply_diff}; my @ary = ...; my @diff = ...; # some call to Algorithm::Diff::diff() my @changed_ary = apply_diff(@ary, @diff); my $changed_ary =... Platforms: *nix

License: Freeware Size: 12.29 KB Download (92): Algorithm::Diff::Apply Download

Added: May 06, 2010 | Visits: 2.102

Parallel Genetic Algorithm Library Parallel Genetic Algorithm Library (or PGAL for short) is a C++ toolkit for simply, efficiently, and swiftly producing genetic algorithm code that works across multiple processors. This is useful not only for those with multi-processor computers, but also for distributed and cluster computing... Platforms: *nix

License: Freeware Size: 75.78 KB Download (218): Parallel Genetic Algorithm Library Download

Added: January 17, 2010 | Visits: 1.047

Algorithm::BinPack Algorithm::BinPack is a Perl module that can efficiently pack items into bins. SYNOPSIS Algorithm::BinPack efficiently packs items into bins. The bins are given a maximum size, and items are packed in with as little empty space as possible. An example use would be backing up files to CD,... Platforms: *nix

License: Freeware Size: 4.1 KB Download (107): Algorithm::BinPack Download

1 2 3 4 5 >