5
votes
5answers
359 views
Finding the farthest point in one set from another set
My goal is a more efficient implementation of the algorithm posed in this question …
0
votes
Sort numbers by sum algorithm
I think there is no trivial solution to this problem, and my approach is likely no better than the priority queue approach.
Find the smallest number, N.
Any pairs of numbers that occupy eac …
2
votes
Algorithm to determine the “usual” cash payment amounts for a given price
"Most likely" makes this a very tricky problem. You would need to know the relative availability and distribution of each type of currency. For example, 22% of all bills in circulation are $20s, …
1
vote
Algorithm to determine the “usual” cash payment amounts for a given price
It is for a point-of-sale system. When the final price is calculated, the cashier has to enter in the amount of cash provided by the customer. There are three "shortcut" buttons whic …
3
votes
I need to do a fill pattern in Intel hex file. My question is how would I do a fill pattern of an arbitrary size?
The -repeat-data generator can take multiple bytes as parameters.
The following will fill bytes 16 through 31 with C2AF00C2AF00...
srec_cat -Output -Intel -generate 0x10 0x20 -repea …
2
votes
Smooth spectrum for Mandelbrot Set rendering
Use the smooth coloring algorithm to calculate all of the values within the viewport, then map your palette from the lowest to highest value. Thus, as you zoom in and the higher values are no long …
1
vote
Algorithm for finding the smallest power of two that’s greater or equal to a given value
An exploration of the possible solutions to closely related problem (that is, rounding down instead of up), many of which are significantly faster than the naive approach, is available on the …
1
vote
Algorithm: iterate over 2 variables in order of descending product
Fill a list with (a,b,product), sort by product then a, display the list.
…
1
vote
Algorithm: iterate over 2 variables in order of descending product
in no particular language
for i in ( ( 5 * 5 ) .. 1 )
for j in ( isqrt( i ) .. 1 )
if ( i % j == 0 )
print ( i / j ) + "*" + j + "=" + i
…
1
vote
Finding the center of mass on a 2D bitmap
Depending on the nature of your actionscript interpreter and the pre-processing done on the shapes, you may see a speed improvement (over the direct approach pointed out by Yuval) by initially crea …
8
votes
“Approximate” greatest common divisor
Express your measurements as multiples of the lowest one. Thus your list becomes 1.00000, 1.49919, 2.49996. The fractional parts of these values will be very close to 1/Nths, for some value of N …
3
votes
How to store sets, to find similar patterns fast?
Sounds a lot like the Netflix Prize challenge, more specifically the first half of the most popular approach. The possible implementa …
1
vote
Can error correction codes constitute an entertaining game?
Another way to look at the overspecification in the final result is to consider the original state as the result of a compression algorithm.
…
1
vote
Can error correction codes constitute an entertaining game?
Representing arbitrary data as a sudoku puzzle is not particularly feasible as the total number of sudoku grids (and thus, the number of distinct pieces of information that could be represented by …
2
votes
How to calculate a weighted mean?
Doubt I can beat the accepted answer, but I find that built in looping functions run faster than scripted loops. Not sure how well the calls to $multiply are going to be optimized. If this is rea …
