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.

learn more… | top users | synonyms (2)

0
votes
0answers
25 views

How to make a 'ball' move and bounce in any direction within a form?

How can I move and bounce a ball in any direction in C#? I could make it bounce up and down only. But, I want it to move and bounce in any direction within the form. The below code is what I have: ...
1
vote
1answer
30 views

Solving the recurrence T(n) = T(n / 2) + O(1) using the Master Theorem?

I'm trying to solve a recurrence relation to find out the complexity of an algorithm using the Master Theorem and its recurrences concepts, how can I prove that: T(n) = T(n/2)+O(1) is T(n) = ...
0
votes
0answers
35 views

Optimize fill factor by move objects between areas

I have a optimization problem which is about several small rectangles inside one outer rectangle. We have, let say, three outer rectangles which are in following order (similiar to weeks). Each ...
0
votes
2answers
24 views

Performant intersection algorithm for Bounding Box with a Line Segment emanating from its center point

There are many close, helpful answers to similar questions listed on stackoverflow, however i have not found any yet that match my particular case. I need a performance efficient algorithm to ...
-1
votes
1answer
32 views

meaning of file .TSP (travelling salesman)

I would like understand the informantion in a file .tsp found at: http://www.tsp.gatech.edu/world/countries.html For example NAME : ar9152 COMMENT : 9152 locations in Argentina COMMENT : Derived ...
0
votes
1answer
46 views

What would be an efficient way of calculating ratio of two factorials with arbitrary precision?

In a research paper, I read the following statement The computations of S (...) and C (...) involve computing ratios of factorials such as (2n)!/(2k)!, where 0 ≤k ≤ n. This can be done in time ...
2
votes
2answers
133 views

Sudoku solving algorithm C++

I'm trying to make a Sudoku Solving program for a couple of days but I'm stuck with the methods. I found this algorithm here but I don't really understand it: start at the first empty cell, and ...
0
votes
1answer
49 views

does eight queens backtracking solution require any sorting at all?

Hi I have just sat my final year programming exam, I was asked the question: what sorting and searching algorithms are used to solve the 8 queens problem. Correct me if I am wrong but there is no ...
1
vote
2answers
46 views

find all disjoint (non-overlapping) sets from a set of sets

My problem: need to find all disjoint (non-overlapping) sets from a set of sets. Background: I am using comparative phylogenetic methods to study trait evolution in birds. I have a tree with ~300 ...
-1
votes
1answer
40 views

Algorithm for optimal combinations to cut

Input: I have a master length of 10m and I have products that need to be cut in 3m, 4m, 5m dimensions. I tried writing an algorithm that will generate the following table for me (optimal lengths): ...
4
votes
2answers
37 views

Get interest area of a Histogram (Int Array)

I have an int array full of values (0-255) and I need to extract two indexes. The indexes to be found will represent the Interesting Area I want to focus on. The values of this area are always ...
-2
votes
1answer
72 views

What 's Big O notation on this specific code? [closed]

I want to know Big O notation and Big Omega notation (worst case, best case) of this code It is a sorting algorithm and my guess is that it has a O(n) and Omega(n) : public static void swap(int[] ...
-2
votes
1answer
22 views

Electronic signature

I was asked to code electronic signature for the form. But I can't understand a thing from the description. Is it my qualification or something is missing? Here is description: MAC008(x1, x2, …, xn) ...
0
votes
0answers
18 views

Ukkonen's Algorithm Generalized Suffix Trees

I understand the ukkonen's algorithm. I am only curious how to extend it to have more than one string in it (ending with a special character say "$"). I read somewhere that Given strings s1(say ...
2
votes
1answer
62 views

Updating an grid of “players” by replacing losers with copies of the winner

I have a two-dimensional array of objects. Each object has, at all times, some (variable) score (i.e. an object's score at time t is not necessarily the object's score at time t+1). I want to find the ...
-3
votes
3answers
68 views

Efficient way to compare sublists across lists of lists? [closed]

Sorry for bad phrasing of the title(which sheds light on, if not excuses me for, googling failures...). Hope the explanation is clear enough. I have two lists of lists(lines from now on), and I want ...
0
votes
1answer
41 views

All Paths Between 2 vertexes in R

I use igraph. I want yo find all the possible paths between 2 nodes. For the moment, there doesn't seem to exist any function to find all the paths between 2 nodes in igraph I found this subject ...
1
vote
1answer
34 views

Filtering out values of a bidimensional array

I have a bidimensional array which looks like this: [[10, 20, 30, S1] [10, 20, 30, S1] [10, 20, 30, S1] [50, 70, 80, G1] [50, 70, 80, G1] [50, 70, 80, G1]] I want to filter out every "non-first" ...
1
vote
0answers
46 views

Drawing inside the clipping coordinates

I defined a clipping volume for some drawing that I have to do and tried drawing a rectangle for which I am getting the input coordinates from an external source. For e.g.: The external sources gives ...
0
votes
1answer
33 views

Match data in SQL Server database using multiple and varying columns

We have a database table consisting of 6 "header" criteria and we need to match any combination of these columns to retrieve the detail data. We wont know which of the criteria the underlying ...
5
votes
2answers
77 views

PHP combinations of array elements

I want to generate all possible combination of array elements to fill a placeholder, the placeholder size could vary. Let say I have array $a = array(3, 2, 9, 7) and placeholder size is 6. I want to ...
0
votes
0answers
12 views

Image thinning process using JAVA, for Minutiae extraction

I have implemented the Zhang-Suen algorithm, with the help of OpenCV. But, the process of thinning is taking too much time. I am using a Binarized image to get it done. Is it taking the time because ...
2
votes
1answer
46 views

Shortest Bit Sequence Logic

I am trying to understand how does the shortest bit sequence work. I mean the logic. I need to create a program for it but don't know actually what is this shortest bit sequence. I tried to google but ...
0
votes
2answers
31 views

Step Count in Algorithm

What is the step count for this algorithm in terms of n ? SequentialSearch(a,x,n) { i=n; a [0]=x; while(a [i]!= x) do i = i-1 return i } Please mention the count for each ...
2
votes
1answer
36 views

String matching between complete and incomplete(or short form) strings

This question might get reported for duplicates, but I have done lots of research and haven't got anything satisfactory, so I thought its better I ask it precisely. In my project, I need to match ...
0
votes
0answers
18 views

Tabu Search in TSPTW

I applied Tabu Search in TSPTW problem, but it gives me result similar to getting best improvement using exchanging pivot rule (exchange between 2 cities ), However in some papers, it is stated that ...
1
vote
1answer
33 views

Pick optimize minimum number of elements to span a region

I have an optimization problem. I have never learned algorithms, only taught myself python, so I am not sure if this is a hard or easy problem to solve. The non-abstract application of this problem is ...
1
vote
3answers
100 views

Optimized way to handle extremely large number without using external library

Optimized way to handle the value of n^n (1 ≤ n ≤ 10^9) I used long long int but it's not good enough as the value might be (1000^1000) Searched and found the GMP library http://gmplib.org/ and ...
1
vote
1answer
28 views

ask step by step levenberg-marquardt in java

I'm trying to write levenberg marquardt in Java, here's my code: while (iter <= 10 || mse < 0.0001) { call.calc_jacobian(ff, trainlm, input, akt1, akt2, w, x, t); double[][] ...
0
votes
1answer
51 views

java calculate pregnancy algorithm [duplicate]

hello I am trying to calculate how many days are left in a pregnancy term but I think my algorithm is incorrect public int getDaysPregnantRemainder_new() { GregorianCalendar calendar = new ...
0
votes
0answers
24 views

AES CBC Not Producing Correct Vectors

I have two methods for encryption and decryption in CBC mode. I have all ready verified my ECB methods and they function properly. My issue is that when I test encryption in CBC with test vectors it ...
1
vote
1answer
28 views

What is the best structure to find which AABB boxes in a dynamic set collide with an arbitrary AABB box?

I have a set of dynamic AABB boxes whose positions and sizes are updated continuously. What is a structure I can use to get which AABB boxes of those are colliding with an arbitrary AABB box?
2
votes
1answer
107 views

Minimizing sum of absolute values of differences

An SPOJ question: Given two arrays, A and B, of positive numbers between 1 and 1,000,000. I have to pair each integer a in A with an integer b in B such that the sum of absolute values of differences ...
2
votes
0answers
50 views

Algorithm for finding visually similar photos from a database?

TinEye, Google and others offer a "reverse image search" -- you can upload a photo and within seconds it will find similar photos. Is there an open-source version of these algorithms? I know about ...
0
votes
1answer
46 views

Shortest Path by rolling a dice

I have a difficult problem to solve (at least that's how I see it). I have a die (faces 1 to 6) with different values (others than [1-6]), and a board (n-by-m). I have a starting position and a finish ...
0
votes
1answer
39 views

Rotating a 2D polygon shape algorithm

I have searched stackoverflow and find this question useful and learned about the 2D shape rotation. I have the coordinates in such format int x1=-30, x2=-15, x3=20, x4=30; int ...
-3
votes
0answers
47 views

What is my wrong in algorithm recursive?

I have a problem to implement a recursive version of an algorithm that I made, I get different values, I hope you can help me, here are the code so Iterative (OK) and Recursive code form that is not ...
0
votes
3answers
82 views

Factorize a number and check prime of the sum

The exercise was: Design a program that finds all numbers from 1 to 1000 whose prime factors, when added together, sum up to a prime number (for example, 12 has prime factors of 2, 2, and 3, ...
3
votes
2answers
56 views

Finding non-monotonic regions in decision trees

I have a binary decision tree T that takes a vector V of n real numbers, and outputs a number S by following per coordinate binary splits on V. I'd like to find regions of the tree that are ...
0
votes
1answer
45 views

Having trouble understanding and implementing the Ford Fulkerson algorithm

I'm trying to implement the Ford Fulkerson algorithm in Java. So far I have a graph with Nodes and Edges. The nodes contains an ID string and an adjacencyList of edges. The edges contain the capacity ...
-1
votes
1answer
47 views

PHP vs Javascript when creating sophisticated sorting algorithm [closed]

I am wondering if it makes sense to do a sophisticated sort algorithm to data retrieved from mysql using javascript instead of relying on mysql queries and php to do selection and sorting based on ...
1
vote
2answers
64 views

An algorithm for grouping table of contents items

I have been tasked with generating a table of contents file based on some data structures. The data looks like this: class ToCItem { public Dictionary<int, string> path; public int ...
0
votes
1answer
60 views

Find the optimum number of non uniform bins

R - Problem: to find the optimum number of non-uniform bins to show a range of data points. I have a bunch of data points (let us assume different prices of different mobiles). I need to categorize ...
-5
votes
0answers
30 views

How to Implement an Algorithm in Apache Hadoop MR [closed]

I am trying to implement the Weather forecast, for this I have chosen the KNN Algorithm but I don't know how to implement the algorithm in MapReduce. please help me Thanks in advance, Venkat
0
votes
1answer
42 views

what's 128bit md5 's clash rate on different count of files, such as 10 million or 50 million? [duplicate]

I want to use files' md5 as key to store mp3 files, but I'm afraid that different files have same md5. So I want to know what's 128bit md5 's clash rate on different count of files, such as 10 million ...
1
vote
0answers
45 views

All Shortest Paths To A Given Vertex

Given a directed graph G=(V,E) and a weight function w : E - > R+ (only positive weights for edges in the graph) , I need to find all the shortest paths from every vertex v in V to a given vertex k. ...
-1
votes
1answer
57 views

What is the professional term for the combination of the selection in n out of the total m elements? [closed]

I know the number of combinations is called nCr, but what about all the exact outcomes? For example: I have 3 elements a,b,c and for the param 2, I will have outcomes ab ac ba bc ca cb I want to ...
0
votes
1answer
47 views

Should Huffman compression be in strict order of frequency?

I'm just testing where I've got to on a Huffman encoding exercise. My test file has a lot of low frequency chars (mostly frequency of 1) and a low number of high frequency chars. I'm testing what's ...
0
votes
0answers
43 views

If graph has cross edge, whether it is singly connected or not

when I look "Introduction to Algorithms 3rd", encounter this question below. 22.3-13 * A directed graph G is singly connected if u -> v implies that G contains at most one simple path from u to v for ...
0
votes
1answer
53 views

How do I implement CBC mode?

My problem lies around the AES encryption algorithm and implementing an IV into the algorithm. I have the ECB version of AES working and I have thoroughly tested it. I'm trying to make it more secure ...

1 2 3 4 5 599