Search Results

12
votes

Algorithm for detecting “clusters” of dots

How about defining an arbitrary resolution for your space, and calculate for each point in that matrix, a measure of the distance from that point to all dots, then you could make a "heat graph" and …
1
vote

Recursion algorithm to generate sitemap

The more efficient way of doing this if you can change the data structure is using nested sets: …
2
votes

Algorithm to mix sound

If you need to do this right, I would suggest looking at open source software mixer implementations, at least for the theory. Some links: …
1
vote

Finding clusters of mass in a matrix/bitmap

Here's a similar question with a not so fast algorithm, and several other better ways to do it. …
2
votes

Fastest way to get value of pi

Just came across this one that should be here for completeness: calculate PI in Piet It has the ra …
-1
votes

Efficient solution for a special assignment problem

Nahively I would go for a genetic aproach, given that genomes are easy to generate, mutate and cross-breed. but there may be an optimal non-combinatory solution. …