An algorithm is a sequence of well-defined steps that defines an abstract solution to a problem. Use this tag when your issue is related to algorithm design.
0
votes
0answers
7 views
References for largest empty circle voronoi diagrams
I need some reference in order to get this idea I have in mind:
Given the largest empty circle problem, I want to determinate where to put new malls
My problem: If I have a map with divided in two ...
1
vote
1answer
15 views
(.Net) Optimal data structure to find union of words between a sentence and dictionary
I am trying to find the most optimal way to compare words in a collection (hashset, list) to a document (like an essay, blog) for finding matching words.
For example - I have the following ...
1
vote
1answer
25 views
Algorithm for finding empty cell around desired position in a grid
I will describe my problem using the attached image :
The green block is the starting position of my game entity. Next I'd like to move it to the position marked by the orange square. But at the ...
0
votes
0answers
10 views
Ranking algorithms for nodes with subnodes?
I am working on a site where there are nodes that users can vote on (upvotes/downvotes). Each node has a list of subnodes. Users can vote on each of these subnodes as well. Think of the relationship ...
1
vote
2answers
30 views
Design an algortihm to match trajectory?
I have a dataset in the form of (timestamp, lattitude,longitude). I'm going to be given n entries where each entry is of the form of (timestamp,lattitude,longitude). This is for one user.
...
2
votes
2answers
55 views
How to combine two arrays into the one, alternating elements?
Suppose you have array arr[N] of increasing numbers. You have to divide it in two other (Left and Right):
L = {0, 2, 4, 6, 8, 10, ...}
R = {1, 3, 5, 7, 9, 11, ...}
The following algorithm does ...
-2
votes
0answers
29 views
(Physical) Library Search Algorithm [closed]
Does anybody know what kind of algorithms libraries use when searching through their large amounts of books in "advanced search" mode? They often allow for boolean search parameters and allow you to ...
-4
votes
0answers
52 views
Matrix Pattern Recognition Algorithm [closed]
I have a picture that I elaborate with my program to obtain a list of coordinates.
Represented in the image there is a matrix.
In an ideal test i would get only the sixteen central points of each ...
2
votes
1answer
34 views
How to encode strings inside serial number using PHP?
I need to generate serial numbers using PHP in the following format "ASDK3-JDAL9-24SFT-J5D8R-D4AL9". One requirement is the fact that I need to encode somehow a timestamp and an email address inside ...
-7
votes
3answers
68 views
Javascript factorial [closed]
I need help with the following.
The factorial of a non-negative integer n (denoted by n!) is the product of all positive integers less than or equal to n.
n! = n * (n-1) * (n-2) * ... * 1
For ...
0
votes
1answer
39 views
Create python dictionary from value of another dictionary?
I am trying to efficiently construct a python dictionary from the keys' values of another dictionary.
For example...
dict1 = {'foo': [1, 3, 7], 'bar': [2, 4, 8]} ## note: all values in {key: ...
1
vote
0answers
25 views
Coordinate conversion from input for drawing in OpenGL
I am trying to do an off-axis projection in my application and trying to change the perspective of the scene as per the user's head position. Normally, given that I had to draw a box on the screen, I ...
1
vote
1answer
19 views
Drum sound recognition algorithms
I am thinking of trying to make program that will automatically generate drum tabs using an audio file containing only the drumming.
I have thought of using FFT to get an average spectrum peaks ...
8
votes
2answers
123 views
Sorting 100 unique numbers by using 40bytes of memory
I've been asked a good programming problem:
In the input I've got 100 unique numbers from 0-255(1 byte). I can only read one number at a time and only once. I've got 40 bytes of memory which I can ...
1
vote
2answers
39 views
Compare strings by matching words
I'd like to know if such an algorithm exists and is implemented in any database (ideally Postgres).
Levenstein matches strings, but I'd like to compare strings based on the number of matching words. ...
0
votes
0answers
42 views
Finding all vertices on negative cycles
I know that the problem of checking whether given edge of a weighted digraph belongs to a negative cycle is NP-complete (Finding the minimal subgraph that contains all negative cycles) and ...
1
vote
2answers
40 views
Calculating a weighted similarity
I have 2 data rows and each of them have 4 fields
something like this:
field1 field2 field3 field4
Row 1
Row 1
Now i have to compare these two records and calculate the similarity. I ...
0
votes
0answers
8 views
Chandy lamport global state algorithm
In Chandy lamport's global state algorithm, it records global states that has not actually occured in the system. Can anyone give an example and explain this statement?
1
vote
1answer
63 views
How to find the maximum number of matching data?
Given a bidimensionnal array such as:
-----------------------
| | 1 | 2 | 3 | 4 | 5 |
|-------------------|---|
| 1 | X | X | O | O | X |
|-------------------|---|
| 2 | O | O | O | X | X | ...
-2
votes
3answers
64 views
2d Array sorting by lowest to highest number [closed]
I would like to sort this 2D array so it would output something like this:
1 2 3
4 5 6
7 8 9
and also tell me how many moves it made to rearange. Thank you allot !
Here is my code so far:
...
-3
votes
0answers
70 views
Coding an Algorithm discussed in Publication [closed]
I'm trying to code the Algorithm discussed in the paper - see here http://tinyurl.com/dxm6zvj . The problem is I am not sure if I understand the problem enough to be able to correctly write the code.
...
0
votes
1answer
92 views
Finding euler cycle
I have an application which creates graph with an Euler cycle. My second application is for finding Euler cycle.
Creating Euler cycle:
Create a cycle e.g. 3->6->5->2->0->1->4->3 because Euler cycle ...
0
votes
2answers
39 views
How Bucket sort is considered under Linear Sorting?
I would like to explore my analysis regarding Bucket sort as below.
There are many ways that Bucket sort can be implemented. Some of them are as follows.
Type 1:
if we know the range of our elements ...
-1
votes
1answer
22 views
Are there any real example that shows how SVM algortihm works step by step tutorial
I am looking examples, articles or ppts but all uses very heavy mathematical formulas which i really don't understand
I just need a simple example that shows step by step with real values not ...
-1
votes
1answer
21 views
Ford Fulkerson and Saturated edge [closed]
I just learnt a few weeks ago about the Ford Fulkerson algorithm to find the maximum flow in a network flow.
I was given an exercise which I assumed to be a very easy to be solved but I'm having a ...
0
votes
1answer
23 views
Algorithm to compute a spanning tree using minimal broadcast messages
For an assignment, I have to come up with a way to modify this algorithm in such a way that I can remove one of the messages used to reduce message complexity, yet still maintain algorithm ...
5
votes
7answers
100 views
Multi-threading with long linked-list
I have a algorithm question here. There are 10 threads in the system and you are given a link list with 10 K elements in it. How do you do the thread synchronization (addition deletion etc.) so that ...
1
vote
2answers
70 views
Select N locations from a list to maximize the total profit from neighborhoods of the selected locations
Out of 1000 locations, 250 locations are eligible for setting up an outlet. I want select 5 localities of these 250 such that it maximizes the sum of profits from neighborhoods of selected locations ...
-1
votes
4answers
49 views
Breadth First Search or Depth First Search?
I am implementing a huge directed graph consisting of 100,000+ nodes. I am just beginning python so I only know of these two search algorithms. Which one would be more efficient if I wanted to find ...
0
votes
2answers
61 views
normalise list data in range (0.0, 1.0)
I create a dict with lists as values, containing some parameters. these parameters are mostly float or int and sometimes boolean values (in my case stored as 0 or 1). Now i want to select the best ...
-1
votes
0answers
52 views
Python diamond square algorithm implementation
I'm quite surprised how little I can find on implementing the diamond-square algorithm in Python. I'm at a loss of why my implementation isn't working. I'm hoping someone could let me know if they see ...
3
votes
1answer
63 views
PHP/MYSQL: Slowly iterate through 6k rows and for every row create new records - Algorithm
I'm sorry for stupid question, but I have one of these days, where I feel like the dumbest programmer. I need your help. I'm currently developing with PHP and MYSQL, where I'm like super low skilled ...
-5
votes
1answer
51 views
Merging a text file in sorting algorithm [closed]
I'm trying to sort a list of numbers taken frm a .txt file and sort it using selection sort (java) ..I have created my codes for selection sort and I have codes to import text file..bt I have problem ...
0
votes
2answers
44 views
Integer array switch Android JAva
I am trying to do a simple convert units application. I have 2 spinners, which one of them containing an array that says the different types of units.
And when I press the Convert button based on ...
-2
votes
0answers
30 views
Is it possible to detect route collision on a quadtree?
I'm trying to detect common routes taken and have my lat/long stored in a quadtree, but not able to see how can I do it.I'm using geohashing library with python. In that I encode each point on a ...
2
votes
0answers
50 views
Matching algorithms in R (bipartite matching, Hungarian algorithm)
I wonder how to set up some example some fundamental matching procedures in R. There are many examples in various programming languages, but I have not yet found a good example for R.
Let’s say I ...
-2
votes
0answers
31 views
A* algorithm implemented in CUDA - can't find path, possible race conditions - any ideas on how to fix it/improve it? [closed]
So, I have to implement a A* pathfinding in CUDA. I've implemented a CPU version, ran some tests, worked like a charm. But when I tried to port it to CUDA, it didn't work as intended. Sometimes, it ...
6
votes
0answers
107 views
Rotate image and crop out black borders
My application: I am trying to rotate an image (using OpenCV and Python)
At the moment I have developed the below code which rotates an input image, padding it with black borders, giving me A. What ...
12
votes
5answers
248 views
Is it possible to enumerate computer programs?
Suppose you have to write a program that will test all programs in search of one that completes a specific task. For example, consider this JavaScript function:
function find_truth(){
...
0
votes
2answers
56 views
why operator() function greater sort different container in different ways
if sort(A.begin(), A.end(), greater()) where A is vector, you get descending order for A; if priority_queue, greater > Q; you get ascending order for Q; I do not know why and it is hard to remember ...
-8
votes
3answers
89 views
Faster Code Anyone? :) [closed]
EDIT: shaved roughly 10% processing time with:
register int16_t *libwordPointer = libword;
int16_t *nReset;
register int16_t *wordsPointer = words[word];
int16_t *mReset = wordsPointer;
for( int ...
0
votes
2answers
43 views
Context aware auto-complete [closed]
I'm trying to implement an autocomplete algorithm for a programming language. I want it to be context aware, meaning that suggestions must appear relative to the statement the user is currently ...
0
votes
1answer
41 views
Finding initial speed and angle to hit a known position (parabolic trajectory)
I am currently doing a small turn based cannon game with XNA 4.0. The game is very simple: the player chooses the speed and angle at which he desires to shoot his rocket in order to hit another ...
2
votes
1answer
57 views
The relationship between linear recursion, binary recursion and runtime
Say we have a method that takes n steps, but that calls itself linearly at the worst case n times. In such a case would the Big O would be n*n? So is a recursive call generally n^2 similarly to two ...
8
votes
3answers
171 views
Put 1*2 and 1*3 tiles into a n*m floor as many as possible
Tiles can rotate.
Example:
Given two 1*2 tiles and one 1*3 tile, and the floor is 3*3, we put all of the tiles into the floor as follows:
AAA
..B
CCB
Now, given n*m floor and p 1*2 tiles and q ...
1
vote
2answers
41 views
find the smallest set of connected substrings
Let's consider a query set Q and a larger superset S. Each element of Q exists in S. The goal is to express Q using the smallest number of (connected) "components" of S.
Here is a concrete example:
...
3
votes
3answers
88 views
Selecting 10% random number from a infinite stream
There is a stream of numbers coming. At any point of time i might need 10% random numbers.
I obviously don't want to store the entire stream.
The bigger problem is for which i am thinking the above ...
2
votes
1answer
102 views
Select N locations from list to maximize sum, with min distance constraint
I want to select 5 localities out of 250 locations, to maximize expected profit such that minimum distance between each locality is 5 miles. Expected profit associated with each location and distance ...
7
votes
6answers
100 views
Partial ordered Comparator
How to implement java.util.Comparator that orders its elements according to a partial order relation?
For example given a partial order relation a ≺ c, b ≺ c; the order of a and b is undefined.
...
4
votes
2answers
57 views
complexity of a randomized search algorithm
Consider the following randomized search algorithm on a sorted array a of length n (in increasing order). x can be any element of the array.
size_t randomized_search(value_t a[], size_t n, value_t x)
...



