Search Results

13
votes

Prime factors

Actually there are several more efficent ways to find factors of numbers. One method which is very fast if the input number has two factors very close to its square root is known as …
2
votes

What “already invented” algorithm did you invent?

How about... ARRAYS! I was 7 or 8, fiddling with BASIC, trying to make a prime number generator. I invented the exact concept of an array, tried in vain to figure out how it was done in BAS …
14
votes

Constant Amortized Time

Amortised time explained in simple terms: If you do an operation say a million times, you don't really care about the worst-case or the best-case of that operation - what you care about is …
1
vote

Should I first study algorithms or another programming language?

As important as I think algorithms are, my advice would be to get away from C++ immediately. Where you go is up to you - if you don't mind learning precise details, you may want to go to C and perh …
1
vote

fast geometric proximity predicate

If your set of (A,B,d) in fixed, you can calculate a pair of matrices for each to translate the co-ordinate system, so that the line AB becomes the X axis, and the midpoint of AB is the origin. …
1
vote

Finding the minimal coverage of an interval with subintervals

Sounds like dynamic programming. Here's an illustration of the algorithm (assume intervals are in a list sorted by ending time): //works backwards from the end int minCard(i …
1
vote

Finding characters in a string that occur only once

Consider using a binary number to represent your "possibles" instead, because binary operations like AND, OR, XOR tend to be much faster than string operations. E.g. if "2" and "3" are poss …
4
votes

Is there a perfect algorithm for chess?

I know next to nothing about what's actually been discovered about chess. But as a mathematician, here's my reasoning: First we must remember that White gets to go first and maybe this give …
1
vote

Algorithm to map Numbers to Hex Colors

While the HSV colour space is probably better in terms of giving you "different-looking" colours, RGB is probably "good enough". You could just let Red, Green and Blue be one of {0, 40, 7F, …
0
votes

Encryption algorithm that output byte by byte based on password and offset

Basically what you need to do is generate some value X (probably 1 byte) based on the offset and password, and use this to encrypt/decrypt the byte at that offset. We'll call it X = …
1
vote

Optimizing cartesian requests with affine costs

I'm sure there's a really good algorithm for this out there somewhere, but here are my own intuitive ideas: Toss-some-rectangles approach: Determine a "roughly optima …
1
vote

Optimizing cartesian requests with affine costs

Ok, my understanding of the question has changed. New ideas: Store each row as a long bit-string. AND pairs of bit-strings together, trying to find pairs that maximise the number o …
0
votes

HSL Interpolation

You probably didn't want to hear this, but convert to RGB, interpolate and convert back. edit: just saw "would be expected of mixing actual paint" In that case you …
5
votes

Count number of nodes in a linked list that may be circular

The tortoise and hare algorithm can give you both the cycle length and …
1
vote

Finding Median of 5 distinct keys

Based on a modified partial bubble sort. Not an optimal solution but it's better than running general-purpose sorts/max-mins on a 5-element set. if a[0] > a[1] swap a[0], a[1 …

1 2 next
15 30 50 per page