5
votes
3answers
148 views
Interesting Interview question [closed]
Give an algorithm for the following problem-
We have an N X N array of 0's and 1's. Each row and column can be toggled. Toggling a row toggles all the bits in the row, same for co …
-2
votes
1answer
95 views
Algorithms Of Bar Code [closed]
I'm needing a Algorithms of bar code for my project, someone can help me?
0
votes
4answers
58 views
Append value to multidimensional array
function append (array, value, dimension) {
switch (dimension) {
case 0:
array.push( value );
break;
case 1:
array[array.length-1].push( value );
…
0
votes
5answers
52 views
Create a sorted array out of 2 arrays
There are 2 arrays given for ex.
A = [20,4,21,6,3]
B = [748,32,48,92,23......]
assuming B is very large and can hold all the elements of array A.
Find the way in which array B is …
0
votes
2answers
121 views
Algorithm to sort
Hi,
I have a list of numbers ex: list=[10,50,90,60]
I have this list to be sorted on the sum of any two elements. along with combination.
for ex: output list should contain 10+ …
1
vote
3answers
70 views
Applying a function to a distance matrix in R.
This question came today in the manipulatr mailing list.
http://groups.google.com/group/manipulatr/browse_thread/thread/fbab76945f7cba3f
I am rephrasing.
Given a distance matri …
1
vote
3answers
144 views
how to solve linear equations using genetic algorithm
hello i want to solve a system of n linear equations containing n variables using genetic algorithm.
i am having difficulty in defining the crossover operation as the solution may …
0
votes
6answers
92 views
comparing objects
I have two student objects.
class Student{
int physics;
int english;
int chemistry;
}
I need to compare Student A marks in each subject with Student B's marks in all the subject …
3
votes
4answers
87 views
Algorithm to generate random order of elements
How to randomize order of approximately 20 elements with lowest complexity? (generating random permutations)
0
votes
5answers
52 views
Best way to convert epoch time to “real” date/time
What I want to do is convert an epoch time (seconds since midnight 1/1/1970) to "real" time (m/d/y h:m:s)
So far, I have the following algorithm, which to me feels a bit ugly:
vo …
5
votes
8answers
326 views
Possible to rearrange an array in place in O(N)?
If I have a size N array of objects, and I have an array of unique numbers in the range 1...N, is there any algorithm to rearrange the object array in-place in the order specified …
4
votes
1answer
45 views
transitive reduction algorithm: pseudocode?
I have been looking for an algorithm to perform a transitive reduction on a graph, but without success. There's nothing in my algorithms bible (Introduction To Algorithms by Cormen …
-1
votes
6answers
121 views
Generating a gaussian distribution with only positive numbers
Is there any way to randomly generate a set of positive numbers such that they have a desired mean and standard deviation?
I have an algorithm to generate numbers with a gaussia …
51
votes
9answers
1k views
Combined area of overlapping circles
I recently came across a problem where I had four circles (midpoints and radius) and had to calculate the area of the union of these circles.
Example image:
For two circles it' …
3
votes
3answers
70 views
Find quickest way to get from wepage A to webpage B following links
I'm looking for an algorithm to find the shortest path between two URL's, or two Wikipedia pages.
For example, the shortest way to get from the wikipedia article of Reddit to the …
