1
vote
7answers
56 views
What kind of algorithms have shortened running time for longer inputs? [closed]
Possible Duplicate:
are there any O(1/n) algorithms?
I've been reading up on various algorithms recently, and have gotten very used to seeing things with O([some combinati …
-2
votes
1answer
96 views
dijktra’s algorithm coding
//dijktra's algorithm
#include<iostream.h>
#include<conio.h>
#include<stdio.h>
#define infi 999
class queue
{
private:
int q[100];
int front, rear;
protected …
3
votes
3answers
46 views
Generate new polygons from a cut polygon (2D)
Hi,
I'm stuck with this little problem and my algorithm to solve this doesn't hold for all cases. Does anybody has an idea how to solve this?
Here's an example polygon:
Forma …
1
vote
7answers
202 views
faster strlen ?
Typical strlen() traverse from first character till it finds \0.
This requires you to traverse each and every character.
In algorithm sense, its O(N).
Is there any faster way to d …
0
votes
4answers
47 views
circle - rectangle intersection problem
I have problem with circle-rectangle intersection.Though A number
of discussion i found about it ,i could not get my answer.My problem is -I have a rectangle lower portion(100-200 …
2
votes
3answers
92 views
Non-Random Weighted Distribution
I currently have a system where the server tells all client applications when to next connect to the server between a server configured time window (say 12 to 6 am client time).
…
7
votes
4answers
187 views
Random prime number
How do I quickly generate a random prime number, that is for sure 1024 bit long?
1
vote
1answer
30 views
Drawing a hex grid in Flash?
What's the easiest way to draw a hex grid algorithmically? How should I present them in data?
For example, in a square grid, I could just save x-y coordinates..
4
votes
9answers
326 views
Fast algorithm for searching for substrings in a string
I'd like an efficient algorithm (or library) that I can use in Java to search for substrings in a string.
What I would like to do is:
Given an input string - INSTR:
"BCDEFGH …
2
votes
3answers
53 views
Algorithms to create a tabular representation of a DAG?
Given a DAG, in which each node belongs to a category, how can this graph be transformed into a table with a column for each category? The transformation doesn't have to be reversi …
0
votes
3answers
29 views
Optimal way for partitioning a cell based shape into a minimal amount of rectangles
Assume a boolean array like:
1111
1111
1110
1111
1001
Now you need to find the way of arranging the least rectangles of any size to achieve this shape. So, for example, you'd fi …
0
votes
3answers
55 views
Algorithm to swap independent and dependent variables of function samples
Suppose you have several functions y1 = f1(x), y2 = f2(x), etc. and you want to plot their graphs together on one plot.
Imagine now that for some reason it is easier to obtain the …
0
votes
2answers
30 views
Latent Semantic Indexing
It is said that through LSI, the matrices that are produced U, A and V, they bring together documents which have synonyms. For e.g. if we search for "car", we also get documents wh …
1
vote
7answers
195 views
Is there an algorithm to find unique combinations of 2 lists? 5 lists?
I have N Lists I'd like to find unique combinations of. I've written it out on my whiteboard and it all seems to have a pattern, I just haven't found it yet. I feel I can express a …
3
votes
8answers
212 views
What’s An Algorithm or code for obtaining ordinal position in a list sorted by value in c++
Hi,
This is similar to a recent question.
I will be maintaining sorted a list of values. I will be inserting items of arbitrary value into the list. Each time I insert a value, …
