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

Dijkstra Algorithm Applet freeware
Filter: All | Freeware | Demo
 

Dijkstra Algorithm Applet

< 1 2 3 4 5 > 
Added: July 07, 2010 | Visits: 1.320

Algorithm::Line::Bresenham Algorithm::Line::Bresenham is a Perl module that contains a simple pixellated line-drawing algorithm. SYNOPSIS use Algorithm::Line::Bresenham qw/line/; my @points = line(3,3 => 5,0); # returns the list: [3,3], [4,2], [4,1], [5,0] line(3,3 => 5,0, &draw_line); # calls draw_line on each...



Platforms: *nix

License: Freeware Size: 3.07 KB Download (134): Algorithm::Line::Bresenham Download

Added: January 15, 2010 | Visits: 1.034

Quick Lounge Applet Quick Lounge applet is an applet for the GNOME Panel. Applets are little applications embedded in the Panel. With this applet you can organize your preferred applications in a single place. You can add spaces between applications, they can be used to group together applications with similar...





Platforms: *nix

License: Freeware Size: 593.92 KB Download (97): Quick Lounge Applet Download

Added: October 15, 2010 | Visits: 876

Algorithm::C3 Algorithm::C3 is a module for merging hierarchies using the C3 algorithm. SYNOPSIS use Algorithm::C3; # merging a classic diamond # inheritence graph like this: # # # / # # / # my @merged = Algorithm::C3::merge( D, sub { # extract the ISA array # from the package no...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (130): Algorithm::C3 Download

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

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 (112): Algorithm::Pair::Best Download

Added: February 03, 2010 | Visits: 846

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: January 01, 2010 | Visits: 928

Algorithm::ScheduledPath Algorithm::ScheduledPath is a Perl module that helps you to find scheduled paths in a directed graph. SYNOPSIS use Algorithm::ScheduledPath; use Algorithm::ScheduledPath::Path; $graph = new Algorithm::ScheduledPath(); $graph->add_edge( { path_id => R, origin => A, depart_time => 1,...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (90): Algorithm::ScheduledPath Download

Added: May 13, 2010 | Visits: 756

XPenguins GNOME Applet The XPenguins GNOME Applet allows you to fill your screen with penguins at the click of a button, as well as being able to change their number and speed on the fly. You must install the basic XPenguins package first..


Platforms: *nix

License: Freeware Size: 64.51 KB Download (104): XPenguins GNOME Applet Download

Added: September 20, 2010 | Visits: 866

EmiFreq applet EmiFreq applet is an daemon that shows/control the CPU frequency and temperature thanks to the cpufreq sysfs kernel interface. The emifreqd daemon enables the applet to change the cpu speed. The GUI is very clean, intuitive fast access to frequency change (with HIG help). Modelled over the...


Platforms: *nix

License: Freeware Size: 378.88 KB Download (104): EmiFreq applet Download

Added: April 17, 2010 | Visits: 828

Emifreq-Applet Multicore Emifreq-Applet Multicore is a modification of the emifreq-applet to support multicore-cpu. This is a modification of the emifreq-applet written by Stéphane Démurget. The original applet for GNOME only supports changing the frequencies of a single-core CPU. With this addition, it is able to...


Platforms: *nix

License: Freeware Size: 624.64 KB Download (105): Emifreq-Applet Multicore Download

Added: November 04, 2010 | Visits: 941

Algorithm::Munkres Algorithm::Munkres is a Perl extension for Munkres solution to classical Assignment problem for square and rectangular matrices. This module extends the solution of Assignment problem for square matrices to rectangular matrices by padding zeros. Thus a rectangular matrix is converted to square...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (100): Algorithm::Munkres Download

Added: March 20, 2010 | Visits: 2.257

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: May 02, 2010 | Visits: 1.059

Algorithm::AhoCorasick::SearchMachine Algorithm::AhoCorasick::SearchMachine provides an implementation and low-level interface of Algorithm::AhoCorasick. Feeds input to the state machine. First (after the instance) argument of this method is the input text (which can be empty, in which case the method doesnt do anything), second...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (114): Algorithm::AhoCorasick::SearchMachine Download

Added: February 09, 2010 | Visits: 898

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 (143): Algorithm::AhoCorasick Download

Added: February 01, 2010 | Visits: 1.226

Algorithm::NeedlemanWunsch Algorithm::NeedlemanWunsch is a sequence alignment with configurable scoring. SYNOPSIS use Algorithm::NeedlemanWunsch; sub score_sub { if (!@_) { return -2; # gap penalty } return ($_[0] eq $_[1]) ? 1 : -1; } my $matcher = Algorithm::NeedlemanWunsch->new(&score_sub); my $score =...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (105): Algorithm::NeedlemanWunsch Download

Added: February 21, 2010 | Visits: 1.863

FreeCell Java Applet FreeCell Java Applet project is a Java applet of the popular FreeCell card game. This is a Java applet of the popular FreeCell card game. FreeCell is the enormously popular solitaire game. Because all cards are visible at the start of the game, it is almost entirely a game of skill. Almost...


Platforms: *nix

License: Freeware Size: 23.55 KB Download (280): FreeCell Java Applet Download

Added: March 12, 2010 | Visits: 1.448

Wireless Applet Wireless Applet is a gnome-panel applet that shows up the status of your wireless card. This applet used to be in the default Gnome releases before it was replaced around v2.10 or so. Some users prefer it over the new one, so we decided to post it here for easy access to it..


Platforms: *nix

License: Freeware Size: 92.16 KB Download (164): Wireless Applet Download

Added: February 27, 2010 | Visits: 915

Algorithm::Combinatorics Algorithm::Combinatorics Perl module is an efficient generator of combinatorial sequences. SYNOPSIS use Algorithm::Combinatorics qw(permutations); my @data = qw(a b c); # scalar context gives an iterator my $iter = permutations(@data); while (my $p = $iter->next) { # ... } # list...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (153): Algorithm::Combinatorics Download

Added: May 10, 2013 | Visits: 367

ANFY Applet boxes For work with program ANFY, You it is necessary download this program with site ANFY and be registered to get full functional version this Applet.Applet supported the multilingual format of the conclusion to information in text mode.Install ANFY to Your computer. Create any Applet. Copy all files...


Platforms: Windows, *nix, PHP, BSD

License: Freeware Download (52): ANFY Applet boxes Download

Fixed Start Open Traveling Salesman Problem - Genetic Algorithm The algorithm computes the optimal route from a fixed predetermined starting point to all other cities without returning to the starting point. Requirements: - MATLAB 7.6 or higher


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


Added: May 10, 2013 | Visits: 629

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


< 1 2 3 4 5 >