4
votes
Similar String algorithm
One way to determine a measure of "overall similarity without respect to order" is to use some kind of compression-based distance. Basically, the way most compression algorithms ( …
1
vote
In-Place Radix Sort
dsimcha's MSB radix sort looks nice, but Nils gets closer to the heart of the problem with the observation that cache locality is what's killing you at large problem sizes.
I suggest a very …
0
votes
Best way to optimize dataset that contains linestrings. Some lines start and end at same coordinates.
There will be a unique solution if every endpoint appears at most twice (ending one linestring and beginning another), but is that guaranteed? E.g. what happens if you have:
A, B, C …
1
vote
Best way to optimize dataset that contains linestrings. Some lines start and end at same coordinates.
One thing to realise is that, if there is more than one linestring that can be connected to a given linestring, it doesn't matter which is chosen -- the final number of linestrings in the …
4
votes
Algorithm to find two points furthest away from each other
I deleted my original post recommending the Floyd-Warshall algorithm. :(
…
0
votes
Which algorithm for assigning shifts (discrete optimization problem)
One thing you can do is to try to look for symmetries in the problem. E.g. can you treat all nurses as equivalent for the purposes of the problem? If so, then you only need to consider nurses in …
1
vote
Obtaining numeric/normalized representation of strings to aid in ‘natural sort ordering’ of titles in DB
The part "accurate to the first X letters or so" is crucial, since a completely accurate assignment of numbers is impossible. To see this, suppose for concreteness that your title …
1
vote
Generating Synthetic DNA Sequence with Subtitution Rate
In the event of a substitution, you want to exclude the current base from the possibilities:
my @other_bases = grep { $_ ne substr($init_seq, $i, 1) } @dna;
$base = …
3
votes
Factorial in C without conditionals, loops and arithmetic operators
This is not a complete answer, but just different approaches to add() and mult() functions:
#define add(a, b) sizeof (struct { char x[a]; char y[b]; })
#d …
1
vote
What is the relation between merges and number of items in a in k-way merge
2-way merges are most efficient when merging equal-sized blocks, so the most efficient k-way merge based on 2-way merges is to first merge block 1 with block 2, block 3 with block 4, and s …
1
vote
What is the relation between merges and number of items in a in k-way merge
OK, to answer the original question as stated:
To merge k blocks using a sequence of 2-way merges always requires exactly k - 1 merges, since regardless of what p …
3
votes
begin(), end() annoyance in STL algorithms
If it got really bad, I would probably create a bunch of templates for my most commonly used algorithms in a new namespace:
namespace my_ranged_algorithms {
// Metafunc …
0
votes
K Nearest Neighbour Algorithm doubt
There is no "best" way to do this. Ultimately, you need to come up with an arbitrary scale.
…
1
vote
Can I use arbitrary metrics to search KD-Trees?
The nearest-neighbour search procedure described on the Wikipedia page you linked to can certainly be generalised to other distance metrics, provided you replace "hypersphere" with the equivalent g …
1
vote
How to traverse a binary tree in O(n) time without extra memory
That guy's algorithm is interesting, but it needs to be pointed out that it does require O(log n) extra bits of space to traverse a binary tree with n nodes. Space requirements must be me …
