Re: algorithms

2024-06-28 Thread karl
William Torrez Corea: > What is the difference between computer algorithms, pseudocode and source > code? I think this explains that: https://en.wikipedia.org/wiki/Algorithm https://en.wikipedia.org/wiki/Pseudo_code https://en.wikipedia.org/wiki/Source_code Regards, /Karl Hammar

algorithms

2024-06-28 Thread William Torrez Corea
What is the difference between computer algorithms, pseudocode and source code? How can I implement an algorithm in my project or source code? The majority of the time the algorithm is copied in pseudocode or mathematically in books or documentation (Greek symbology). An equation, operation can

Re: Exercise Algorithms

2012-01-14 Thread Lubos Boucek
On Sat, Jan 14, 2012 at 9:25 PM, Shlomi Fish wrote: > Hi Lubos, > > On Sat, 14 Jan 2012 20:06:13 +0100 > Lubos Boucek wrote: > > > Hello, > > > > I would like to train my skills at Perl on some algorithms, difficult but > > not too long. Could anybody s

Re: Exercise Algorithms

2012-01-14 Thread Shlomi Fish
Hi Lubos, On Sat, 14 Jan 2012 20:06:13 +0100 Lubos Boucek wrote: > Hello, > > I would like to train my skills at Perl on some algorithms, difficult but > not too long. Could anybody send me a link to some? > I have a list of exercises here: http://perl-begin.org/exer

Exercise Algorithms

2012-01-14 Thread Lubos Boucek
Hello, I would like to train my skills at Perl on some algorithms, difficult but not too long. Could anybody send me a link to some? Thank you in advance, Lubos

Re: classification algorithms

2006-11-03 Thread Saurabh Singhvi
Yes, the two I mentioned above were searches from CPAN only. On 11/2/06, Tom Phoenix <[EMAIL PROTECTED]> wrote: On 11/2/06, Saurabh Singhvi <[EMAIL PROTECTED]> wrote: > What all classification algorithms exist like Algorithm::Naivebayes ? Have you seen what'

Re: classification algorithms

2006-11-02 Thread Tom Phoenix
On 11/2/06, Saurabh Singhvi <[EMAIL PROTECTED]> wrote: What all classification algorithms exist like Algorithm::Naivebayes ? Have you seen what's on CPAN? http://search.cpan.org/ Hope this helps! --Tom Phoenix Stonehenge Perl Training -- To unsubscribe, e-mail: [EMAIL PRO

classification algorithms

2006-11-02 Thread Saurabh Singhvi
HI all, What all classification algorithms exist like Algorithm::Naivebayes ?? The AI::Categorizer doesn't seem to fir my purpose. Please let me know. thanks Saurabh

Genetic algorithms applied with Perl

2002-10-05 Thread Frank Carlos
Here's food for thought: One of the more intriguing types of algorithm is the genetic algorithm. Genetic algorithms mimic Darwinian natural selection, where "fitness" selects individuals for survival, breeding, and, hence, adaptive mutation. "Genetic algorithms applie