Search Results

2
votes

Algorithm/Data Structure Design Interview Questions

A trivial one is to ask them to code up a breadth-first search of a tree from scratch. Yeah, if you know what you're doing it is trivial. But a lot of programmers don't know how to tackle it. …
14
votes

Why is quicksort better than mergesort?

As many people have noted, the average case performance for quicksort is faster than mergesort. But this is only true if you are assuming constant time to access any piece of memo …
1
vote

Factorial Algorithms in different languages

Here is an interesting Ruby version. On my laptop it will find 30000! in under a second. (It takes longer for Ruby to format it for printing than to calculate it.) This is significantly faster t …
3
votes

What are the best programming puzzles you came across?

There are many different kinds of problems that I've found interesting. First there are those that are interesting because solutions use interesting techniques. For example the Hamming seq …
1
vote

How to get scientific results from non-experimental data (datamining?)

I have used the Perl module Statistics::Regression for somewhat similar problems in the past. …
12
votes

Algorithm to calculate the number of divisors of a given number

There are a lot more techniques to factoring than the sieve of Atkin. For example suppose we want to factor 5893. Well its sqrt is 76.76... Now we'll try to write 5893 as a prod …