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.
1
vote
0answers
70 views
Correlation Network Implementation
I have been working on my graph/network problem, and I think I finally know what I want to do. Now that I am getting into the implementation, I am having issues deciding what libraries to use. The ...
1
vote
0answers
39 views
Sending appropriate input to plugin
I am using a third party javascript plugin to develop a two-column table functionality as per my requirements. The plugin accepts an input json array which looks something like the following:
var ...
1
vote
0answers
43 views
Git blame like functionality in php
I have a bunch of revisions of posts, and I'd like to show on a page where each line came from (which revision it was added), but I can't seem to find any algorithm that would take all of the ...
1
vote
0answers
154 views
How to perform animations on android sdk?
Im working on an animation for an android application. The purpose of the app is to animate sort/search algorithms. I am having problems using the ObjectAnimator, because I cant get it to swap two ...
1
vote
0answers
57 views
MySQL Procedure to loop to transform table for gantt chart
I have data in the following form:
Owner
User Story
Task
To Do (in days)
I would like to transform the table to a new table, so that the number of days are represented in unique rows with a ...
1
vote
0answers
66 views
Can someone help me analyze my Convex Hull Algo
Am just curious to see if it is efficient or not.
Basically it finds the left and right most outer points then finds the top "Half" by searching for the largest angle and does the same for the button ...
1
vote
0answers
71 views
Modifying Quine-McCluskey Algorithm for Different Cost Function
The standard cost function for Quine-McCluskey seems to involve minimizing the number of AND gates. For my purposes, I need to minimize the number of literals instead of the number of AND gates (for ...
1
vote
0answers
146 views
Football league scheduling algorithm (with sync. home/away)
I'm making an automatic football league generator and got stuck on schedule.
I have an algorithm for generating everything, but not schedule. Take a look:
[tour-id] => Array
(
...
1
vote
0answers
63 views
Seeded random plotting 2d grid
This has been bugging me for a few hours so I was wondering if anyone could help me out as I might be thinking about this the wrong way.
I want to be able to get a boolean value from a set of x and y ...
1
vote
0answers
88 views
How to design the server side data structure of autocomplete function?
I have millions of Search Engine Queries looks like this:
Stack Overflow
Java Video Tutorials
Cars
C++ vs Java
Now i want to implement a auto-complete function could fit these demands:
1. Type in ...
1
vote
0answers
232 views
Keeping parallel arrays updated when adding a new element in order in C++
This is a college assignment so I would prefer pseudo code, or just a basic idea of the process; however, any help would be appreciated.
The problem:
I have two parallel arrays: array courseNames ...
1
vote
0answers
113 views
Algorithm for inner shadow composition
I would like to ask pretty specialized question.
I have 3 RGBA layers: source layer, inner shadow (blured and colored complement of source layer's alpha channel) and background. First two can have ...
1
vote
0answers
170 views
Complexity of edit distance (Levenshtein distance) recursion top down implementation
I have been working all day with a problem which I can't seem to get a handle on. The task is to show that a recursive implementation of edit distance has the time complexity Ω(2max(n,m)) where ...
1
vote
0answers
79 views
Provide same event handler to multiple instances
I have a Shape class in my program that has some hit testing logic to figure out if the user clicked inside the shape or not.
Shape.h
class Shape
{
Event<ShapeArgs> balloonBurst;
...
1
vote
0answers
62 views
Maximization algorithm for ball preferences
I'm trying to devise the most efficient algorithm for a problem, but I'm having some difficulty. If someone could lend a hand, either by proposing an algorithm or classifying the problem so I can do ...
1
vote
0answers
62 views
Find the total length of overlapped intervals using segment tree?
We have some intervals for example [1;4] [7;13] [9 ; 14] inputs should return 3+6+1=10.
Is there any way using segments tree to find the total length of this intervals when the intervals can ...
1
vote
0answers
69 views
Implementing a system for managing a parking
I am trying to implement a system for managing a parking. This parking has 5 stages and in each stage we have 6 parking spots (a 3D matrix with dimensions 5*2*3) and we know that at least one parking ...
1
vote
0answers
92 views
Dynamic and/or Static Rectilinear/Orthogonal/X-Y Convex Hull
I'm looking for an efficient algorithm for handling 2D dynamic rectilinear convex hulls.
I've coded up a static algorithm, but while it works in most cases, it doesn't work in all, so I'm also ...
1
vote
0answers
75 views
Typeset algorithms in restructured text and mathjax
I'm using restructured text to write pages for a Pelican site and I can display mathematical notation and equation using MathJax.
I would like to also typeset algorithms similar to LaTeX's ...
1
vote
0answers
75 views
sprite sheet arrangement algorithms
I'm creating a simple 2d game for android using opengl and sprite-sheets, now to create these sprite-sheets I use zwoptex.
My question is, is there any utility to using any of the algorithms over any ...
1
vote
0answers
90 views
Splash loader (Progress bar) loader C++ before opening the app window
I have a C++ program that started a small thing and now has grown to become a large application. The application has to load heavy resources, initialize lot of memory, read files and then open a ...
1
vote
0answers
230 views
Segment tree Lazy propagation & my code
I am currently solving a problem on segment tree. I think the problem needs lazy propagation concept to be solved. As I'm very new to this concept, i'm having trouble with my code.
The problem in a ...
1
vote
0answers
94 views
A box alignment algebra
I'm looking for an algorithm (or algebra) for 2d box alignment. The alignment of (recursive) boxes is implemented in type setting systems like TeX and Lout but also in web browsers. For example, boxes ...
1
vote
0answers
58 views
Curve rasterization to pixels
I need algorithm for rasterize a curve in to pixels (like that http://i54.tinypic.com/ffc0n9.png). I tried apply DDA line algorithm for control points, but I didn't give good result. Also I try ...
1
vote
0answers
164 views
Scanline fill algorithm using odd/parity rule
The question is this:
Number the rows and columns in the following figure (outside the figure). Use these row column numbers to show how the scanline stack region filling algorithm would fill in ...
1
vote
0answers
29 views
ARIES KVL, why we always insert into 1st_page
I am learning your paper ARIES/KVL[1], from the paper, The B+tree structure looks like:
------------------------------------
| p0 | k0 | p1 | k1 | p2 ...
1
vote
0answers
68 views
Up to date sentence readability algorithm
Im working on an algorithm for estimating sentence difficulty, but the methods that I have found seem to be to old to take advantage of what modern computers can do.
The ones in use today were mostly ...
1
vote
0answers
228 views
Heuristic function in an Alpha-Beta Pruning algorithm for a Othello/Reversi game
I'm implementing an Alpha-Beta Pruning algorithm that will be used to get the best move in an Othello game. When the algorithm have reached a leaf node (i.e there is no valid moves or it reached the ...
1
vote
0answers
164 views
Markov Decision Process Clarification
I'm in the process of implementing Value Iteration for a homework assignment. It's coming along nicely but I'm confused about a certain part, specifically the line indicated below
//(taken from ...
1
vote
0answers
59 views
K-Server Dynamic Algorithm
I’m trying to get optimal solution for K-server problem for 3 servers using dynamic algorithm.
The idea is to generate all possible permutation and check them all to find the optimum value.
I ...
1
vote
0answers
208 views
MeanShift in Matlab with custom kernel
Is there an implementation of MeanShift, written in Matlab, which allows to use a custom Kernel?
1
vote
0answers
244 views
Handling Underflow with HMM Forward-Algorithm
I'm trying to implement the Forward-Algorithm for a Hidden Markov Model (HMM) and I'm facing the underflow issue when filling the alpha table. I normalized the alpha values using the method described ...
1
vote
0answers
238 views
Optimizing a dijkstra implementation
QUESTION EDITED, now I only want to know if a queue can be used to improve the algorithm.
I have found this implementation of a mix cost max flow algorithm, which uses dijkstra: ...
1
vote
0answers
67 views
Which is the fastest graph representation of Wikipedia out there?
I am working on this project where I need to run some graph algorithms on a graph representing English Wikipedia articles. This would need to be in real time
I have tried
WikiMapUW which has only ...
1
vote
0answers
71 views
User activity algorithm
I am not sure if this is the right place to ask this question. Here it goes, I am looking to calculate a user activity score for a game.
Consider this:
User A wants to attack a User B...Z
Users ...
1
vote
0answers
112 views
What algorithm is fast and good (optimized) for comparing candidates?
I'm using Vim plugin neocomplcache. And I hope a better compare_func for neocomplcache's popup menu candidates.
You can find the default compare_func at here.
And here is the issue I post on GitHub.
...
1
vote
0answers
154 views
Outputting Union-Jack-like ASCII Art with Java
I was given an assignment to code an algorithm outputting (in a plain ASCII, no fancy drawings), for a given K, a KxK square with the lines of symmetry as x and other things as o. If K is even, ...
1
vote
0answers
53 views
Using multiple data streams to correlate event positions
I have a set of signals that I am trying to correlate with each other to determine the liklihood that an event took place.
Signal A has accurate event marks but may miss some or inadvertently capture ...
1
vote
0answers
67 views
Weighted Random over a set of [low, high] value pairs
I have a list of { keyword: [low, high], keyword1: [low1, high1], keyword2: [low2, high2] ... } and I would like to run a weighted random algorithm over it to select a keyword for every request. Would ...
1
vote
0answers
204 views
Find a vertex ordering of a finite graph G
I've tried to implement this algorithm in C++ but it has some problems. I need some advice how to get it work faster and propertly.
Algorithm
As Batagelj & Zaversnik (2003) describe, it is ...
1
vote
0answers
69 views
Deciding pixel position in n X n Grid
Let me introduce my project:
My project is about drawing object in n X n grid. in silver light.
What i have done?
http://www.codeproject.com/Articles/174093/16x16-DotMatrix from this i have ...
1
vote
0answers
439 views
How to find the best subset from an array whose sum is equal to X number in php
I have an array as
$array = array(3,5,6,10,15,30);
$sum = 69;
then there are 3 different sums that equal 69:
3+5+6+10+15+30,
3+6+10+20+30,
3+6+30+30,
The best one is 3+6+30+30. Because it ...
1
vote
0answers
69 views
Dominance Hierarchy Algorithmic Solution
I am trying to calculate a non-linear/intransitive hierarchy structure from a dominance matrix and wanted to know if there is an algorithmic solution to this problem, if so, could someone please ...
1
vote
0answers
333 views
Heuristic A* algorithm for N-Puzzle with tiles repeated
I implementing an algorithm to solve the N-Puzzle problem. This algorithm will use other algorithms like A* and an Heuristic Bidirectional Search. In general this both algorithms give to me good ...
1
vote
0answers
221 views
Walk on a DAG, Traverse All Paths From Sources to Sinks
I am trying to traverse an entire DAG, with the hope of coming up with pairs from a source to a sink.
Ideally, I'd like each source to be unique, and each sink to be unique, thus creating unique ...
1
vote
0answers
378 views
EM Maximum-likelihood Algorithm in MatLab
I am working on implementation of EM Maximum-likelihood algorithm
I found some materials, e.g. complete implementation, but that is maybe just too robust. I am looking for simple output with dataset ...
1
vote
0answers
124 views
Algorithm to sort items between different lists
I am trying to implement an algorithm to sort items in the same list or different list and save the result in a Database.
The code to sort the items in the GUI is already there.
I am using jquery-ui ...
1
vote
0answers
132 views
Has Comb Sort been proven correct? Can it be?
I've been doing some research on Comb Sort and I'm trying to figure out whether the algorithm has been proven correct. However, I can't seem to find a great deal of documentation on the algorithm. ...
1
vote
0answers
84 views
Algorithm for value range mapping
My question perhaps belongs to general ability test or something like that. It is not directly related to Embedded devices.
I have been given a variable resister which can rotate infinitely and is of ...
1
vote
0answers
167 views
layout algorithm for tightly-packed image thumbnails
I'm working on an image gallery and I'd like to tightly pack the image thumbnails. The thumbnails are:
different aspect ratios
available at the same source resolution (longest edge 256 pixels)
...
