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

Binary Algorithm freeware
Filter: All | Freeware | Demo
 

Binary Algorithm

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

Conversion in base This script is useful to convert a given number into a string that contains the base 2 representation of the number, with its sign. Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (52): Conversion in base Download

Added: May 10, 2013 | Visits: 484

Binary search in one line This is an implementation of the binary search algorithm in (almost) one line. Given a number 'n' and a list 'L', the function returns the index of the number on the list, or -1. Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (56): Binary search in one line Download

Added: August 19, 2013 | Visits: 532

Heuristic Algorithm for finding Maximum Independent Set findMIS is an heuristic algorithm for solving Maximum Independent Set problem (MIS).An independent set of a graph is a subset of vertices in which no two vertices areadjacent. Given a set of vertices, the maximum independent set problem callsfor finding the independent set of maximum... Platforms: Matlab

License: Freeware Size: 10 KB Download (49): Heuristic Algorithm for finding Maximum Independent Set Download

Added: January 27, 2010 | Visits: 947

Search::Binary Search::Binary is a Perl module for generic binary search. SYNOPSIS use Seach::Binary; $pos = binary_search($min, $max, $val, $read, $handle, [$size]); binary_search implements a generic binary search algorithm returning the position of the first record whose index value is greater than or... Platforms: *nix

License: Freeware Size: 2.05 KB Download (105): Search::Binary Download

Added: October 13, 2010 | Visits: 1.181

Tree::Binary::Search Tree::Binary::Search is a binary search tree for Perl. SYNOPSIS use Tree::Binary::Search; my $btree = Tree::Binary::Search->new(); $btree->useNumericComparison(); $btree->insert(5 => "Five"); $btree->insert(2 => "Two"); $btree->insert(1 => "One"); $btree->insert(3 => "Three");... Platforms: *nix

License: Freeware Size: 27.65 KB Download (253): Tree::Binary::Search Download

Added: May 10, 2013 | Visits: 479

Binary ordered tree This script is a simple example demonstrating the construction of binary trees. Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (60): Binary ordered tree Download

Added: June 22, 2013 | Visits: 480

Binary Step Size Based LMS Algorithms(BS-LMS) I was trying out modifications of the LMS algorithm so that it will converge faster and the mean square error will also be smaller. Getting to one of the drawbacks of LMS, that it has only one controllable parameter "mu", the selection of whose value will be the most critical from design point of... Platforms: Matlab

License: Freeware Size: 30.72 KB Download (44): Binary Step Size Based LMS Algorithms(BS-LMS) Download

Released: August 08, 2011  |  Added: August 29, 2011 | Visits: 2.003

Binary Viewer Binary Viewer is a free windows utility allowing you to open and view any file located on your computer regardless of format file was saved. It can display data in decimal, octal, hexadecimal and text (ASCII or Unicode) formats. Program supports Alternate Data Streams (ADS). It also provides... Platforms: Windows

License: Freeware Size: 767.6 KB Download (692): Binary Viewer 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.251

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

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: July 15, 2010 | Visits: 898

Parse::Binary::FixedFormat::Variants Parse::Binary::FixedFormat::Variants is a Perl module to convert between variant records and hashes. Parse::Binary::FixedFormat supports variant record formats. To describe a variant structure, pass a hash reference containing the following elements to new. The object returned to handle variant... Platforms: *nix

License: Freeware Size: 31.74 KB Download (89): Parse::Binary::FixedFormat::Variants Download

Added: August 02, 2010 | Visits: 997

Parse::Binary::FixedFormat Parse::Binary::FixedFormat is a Perl module to convert between fixed-length fields and hashes. SYNOPSIS use Parse::Binary::FixedFormat; my $tarhdr = new Parse::Binary::FixedFormat [ qw(name:a100 mode:a8 uid:a8 gid:a8 size:a12 mtime:a12 chksum:a8 typeflag:a1 linkname:a100 magic:a6... Platforms: *nix

License: Freeware Size: 31.74 KB Download (96): Parse::Binary::FixedFormat Download

Added: January 17, 2010 | Visits: 1.046

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

Added: September 29, 2013 | Visits: 940

Genetic Algorithm File Fitter Genetic Algorithm File Fitter, or just GAFFitter, is a command-line software written in C++ that arranges--via a genetic algorithm--an input list of items or files/directories into volumes of a certain capacity (target), such as CD or DVD, in a way that the total wastage is minimized. By smartly... Platforms: *nix

License: Freeware Size: 40.96 KB Download (122): Genetic Algorithm File Fitter Download

Added: April 25, 2010 | Visits: 944

Algorithm::Permute Algorithm::Permute is a Perl module with handy and fast permutation with object oriented interface. SYNOPSIS use Algorithm::Permute; my $p = new Algorithm::Permute([a..d]); while (@res = $p->next) { print join(", ", @res), "n"; } my @array = (1..9); Algorithm::Permute::permute { print... Platforms: *nix

License: Freeware Size: 10.24 KB Download (108): Algorithm::Permute Download

Added: February 19, 2010 | Visits: 886

Algorithm::SISort Algorithm::SISort is a Perl module that contains select and insert sorting algorithm. SYNOPSIS use Algorithm::SISort qw(Sort Sort_inplace); @sorted_list = Sort {$_[0] <=> $_[1]} @unsorted_list; # ... or ... $number_of_comparisons = Sort_inplace {$_[0] <=> $_[1]} @unsorted_list; This... Platforms: *nix

License: Freeware Size: 4.1 KB Download (100): Algorithm::SISort Download

1 2 3 4 5 >