0
votes
1answer
25 views
Finding a fuzzy match with bitap algorithm
Reciently I've looked through several implementation of bitap algorithm but what all of them do is finding the beginning point of fuzzy match. What I need is to find a match. There's an example:
Say …
0
votes
0answers
26 views
Can Dancing Links be applied to this CSP?
Can the Dancing Links implementation of Knuth's Algorithm X be used to solve this CSP? In this game the first and last number are always already in the board and I belive there's only one solution to …
1
vote
0answers
24 views
Lock Free Deque that supports removing an arbitrary node
This needs to be lock free as it has to run in the interrupt handler of an SMP system. I cannot take locks.
I have a contiguous array holding some values. Some of the entries in this array are …
4
votes
2answers
95 views
Dynamic Programming: Sum-of-products
Let's say you have two lists, L1 and L2, of the same length, N. We define prodSum as:
def prodSum(L1, L2) :
ans = 0
for elem1, elem2 in zip(L1, L2) :
ans += elem1 * elem2
return …
0
votes
3answers
73 views
Tournament graph
A tournament is a directed graph (digraph) obtained by assigning a direction for each edge in an undirected complete graph. That is, it is a directed graph in which every pair of vertices is connected …
-1
votes
2answers
61 views
Need Assembly Programming Help (TASM) - Booth’s Algorithm
I've written an algorithm to simulate Booth's Algorithm using only Add, Sub, and Logical Operators and return a hexadecimal value. My Tasm compiler keeps throwing me these errors. When I try to …
0
votes
3answers
34 views
Julianday get day of year
I have julianday like 731831, how i can get day of year from it?
1
vote
8answers
193 views
Averaging angles… Again
I want to calculate the average of a set of angles.
I know it has been discussed before (several times). The accepted answer was Compute unit vectors from the angles and take the angle of their …
0
votes
1answer
81 views
Name of a particular algorithm
Hi,
I'm trying to determine the name of the algorithm which will determine if a set of blocks listed as Xl,Yl-X2Y2 are part of a contiguous larger block.
I'm just really looking for the name of, so …
0
votes
1answer
156 views
How do I find the derivative of sin(x) using recursion?
How do I find the derivative of sin(x) where x could be any value e.g. 1,2,3 using recursion?
3
votes
11answers
325 views
What’s the most challenging algorithm you ever implemented?
For me,it's the dijkstra,what about you?
6
votes
2answers
73 views
Is it possible to have a rotationally invariant identifier of a boolean matrix?
Say I have a matrix of ones and zeros, and I would like a 'identifier' for this matrix that takes the same value regardless of whether the matrix is rotated by 90, 180, or 270 degrees, i.e. a 4-to-1 …
1
vote
2answers
74 views
How to implement this oscillation function
What would be a fast way to implent this osscilation function.
A signature would look like this:
public static double Calculate(UInt64 currentCounter, uint duration, uint inDuration, uint …
1
vote
4answers
108 views
How to get the second highest number in an array in Visual C#?
I have an array of ints. I want to get the second highest number in that array. Is there an easy way to do this?
0
votes
1answer
41 views
Frequency based sorting
You are given an array of integers and you have sort those integers based on the frequency of
their occurrence. Design an algorithm and analyze its time complexity. In case of ties the smaller
number …
