3
votes
Looking for an algorithm to spit out a sequence of numbers in a (pseudo) random order
Your question is a bit confusing, as it sounds like you want to get all of the original sequence back, but then you have both 4 and 8 mapping to 10, and nothing mapping to 12.
If you actual …
2
votes
Generate unique colours
In general RGB isn't a great color space for doing these sorts of things because it's perceptually nonlinear, for starters. This means that equal distances moved between RGB triplets do not look e …
2
votes
Is a kd-tree suitable for 4D space-time data (x,y,z,time)?
You haven't really given enough information to answer this.
But sure, in general kd-trees are perfectly suitable for 4 (or 5 or 6 or...) dimensional data --- if the spatial (or in your case …
1
vote
How to determine a strings dna for likeness to another
Many people have suggested looking at distance/metric like approaches, and I think the wording of the question leads that way. (By the way, a hash like md5 is trying to do pretty much the opposite …
0
votes
Some pointers on implementing algorithms in code
Both of these introductory books have good information about this sort of thing:
How To Design Programs and moreso …
1
vote
What is the difference between Linear search and Binary search?
Try this: Pick a random name "Lastname, Firstname" and look it up in your phonebook.
1st time: start at the beginning of the book, reading names until you find it, or else find the plac …
3
votes
Where can I find a good read about bicubic interpolation and Lanczos resampling?
While what Ants Aasma says roughly describes the difference, I don't think it is particularly informative as to why you might do such a thing.
As far as links go, you are asking a very basi …
