Search Results

0
votes

I need to join two lists, sort them and remove duplicates. Is there a better way to do this?

As Antti pointed out, you probably want to leverage REMOVE-DUPLICATES and SORT, though I'd probably use a keyword (or optional argument) for the test function: (defun merge-lists (list-1 list-2 sor …
2
votes

Algorithm for ProjectEuler Problem 99

One possible approach would be to use logarithm identities (that is, ab is identical to eb * ln a). As a matter of fact, ab is identical to baseb * logbas …
0
votes

keystroke generation

You're looking at quite a bit of computation towards the higher end of that. One possible way to do it would be to have an array as a place-holder for your digit sequence, increment either …
0
votes

Effective method to hide email from spam bots

Does it work if I right-click on the link and choose "copy URL"? If not, it's very much not an ideal situation (I very seldom click on a mailto link, preferring to copy the email address and paste …
1
vote

Pseudorandom directory tree generation?

As you mention in your second edit, I would probably implement the whole thing as a file tree traversal, with the PRNG deciding "change to directory", "create directory", "move up one level", "crea …
0
votes

What sort algorithm provides the best worst-case performance?

If you have a sufficiently huge data set, you're probably looking at sorting individual bins of data, then using merge-sort to merge those bins. But at this point, we're talking data sets huge enou …
1
vote

Fast Algorithm to Generate 500,000 html file.

If I were to do this, I'd store the generated files in a hierarchy, based on the file name (IFF the filenames are sufficiently well distributed), so "onefile.html" gets stored in "o/n/e/onefile.htm …
1
vote

Algorithm for placing nodes on a circle considering their distance to eachother

It's possible that GraphViz has some links to algorithms. Alternatively, you may be able to get your data into a format that GraphViz accepts a …
0
votes

Why is squaring a number faster than multiplying two random numbers?

If you have a binary number A, it can (always, proof left to the eager reader) be expressed as (2^n + B), this can be squared as 2^2n + 2^(n+1)B + B^2. We can then repeat the expansion, until such …
1
vote

Combine Gyroscope and Accelerometer Data

Gamasutra.com ran an article on using …
0
votes

How can I modify my Shunting-Yard Algorithm so it accepts unary operators?

When I needed to support this, I did this in an intermediate stage. I started by generating a list of all expression lexemes, then used helper functions to extract operators and operands and the "g …
1
vote

Scheduling algorithm/problem

A few things to make the problem simpler. You can probably shrink the number of "units to schedule" down from tens of thousands to a few hundred, by looking at people who are sitting the same set o …
1
vote

Automate FAQ system & Algorithm

When I was working on some code for automatic selection of questions and answers from a FAQ collection, I ended up extracting keywords from the answers and setting scores on them. Then I checked al …