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)

2
votes
1answer
58 views

How Does This String Permutation Works

Need help understanding the correctness of the second swap call. /* Function to print permutations of string This function takes three parameters: 1. String 2. Starting index of the string ...
0
votes
2answers
96 views

all possible combination of n sets

I have n Sets. each Set has different number of elements. I would like to write an algorithm which give me all possible combinations from the sets. for example: Lets say we have: S1={1,2}, ...
0
votes
1answer
56 views

one-producer and multiple consumer : should I use N semaphore if there are N consumers and N types of products

I have a program with 1 producer thread and N consumer threads. There are N types of producet, so I set up N FIFO queues(products should be delivered to the consumer in sequence). like: FIFO_queue_t* ...
1
vote
4answers
56 views

Algorithm for determining acceptable variance

I have an application that is comparing numbers from two different reports. It is going to alert the user when the variance between the two numbers is over a certain threshold. I was originally going ...
0
votes
2answers
44 views

Sorting an array of polyLines

I have the following two classes public class PointClass { double x, y, z; } and public class PolyLineClass { PointClass startPoint; PointClass endPoint; } and an array of ...
21
votes
5answers
418 views
+50

A* Admissible Heuristic for die rolling on grid

I need some help finding a good heuristic for the following problem: You are given an R-by-C grid and a six-sided die. Let start and end be two distinct cells on this grid. Find a path from ...
0
votes
1answer
31 views

How to present Users Option in Algorithm or Pseudo Code

I have a software that asks user to choose different options from 3 sets of parameters before running the program with those inputs. However, I don't know how to show that in an algorithm or a Pseudo ...
-3
votes
3answers
64 views

Adding all values of 2 stacks to 1 stack and sorting them

There are 3 stacks - A, B, C Stacks A and B are sorted (the number on the top of the stack is the biggest). Stack C is Empty Only 5 operation are allowed: push pop top is_empty create We need to ...
1
vote
1answer
74 views

Unclear why this coin change algorithm works

I worked with someone yesterday from SO on getting my coin changing algorithm to work. It seems to me that, first, makeChange1() calls getChange1() with the change amount... getChange1() checks if ...
0
votes
1answer
55 views

Which Algorithm to choose in pattern matching time serie?

I 've got multiple time series represented as multiple list of integers (in main memory, not in database). I need to perform a fast search, among all series, to find a specific pattern. Example, ...
4
votes
5answers
99 views

Finding recursive sum in SQL statement

I've two tables A and B like: A (id, dep_id) and B (id, amount) The data in those tables are like this A B id dep_id id amount --- ------- ---- -------- 1 2 ...
1
vote
2answers
27 views

Running trend or no trend Twitter rumor project

I'm learning about algorithms "trending topic", I have read the article by Stanislav Nikolov, Trend or No Trend: A Novel Nonparametric Method for Classifying Time Series. I tried downloading his ...
0
votes
3answers
59 views

Searching For Closest float values in an array

I have a problem trying to pick the closest float value out of an array. Here is some example data; The numbers that I will be dealing with always share this mirroring characteristic. ...
0
votes
0answers
36 views

How to identify user defined objects in an Image? [closed]

Example: If I have a list of custom objects say "Sun, Moon, Door, Fan" and I want to find these objects inside an image. Are there any standard algorithms to do such kind of a work?
6
votes
4answers
100 views

Inverse convolution of image

I have source and result image. I know, that some convolution matrix has been used on source to get result. Can this convolution matrix be computed ? Or at least not exact one, but very similar.
1
vote
1answer
84 views

Find Leftmost Line Leaving a Vertex

As part of a larger algorithm, I am traversing a set of interconnected line segments. On arriving at any vertex via a line segment, I need to find the leftmost line segment leaving from that point. ...
0
votes
0answers
44 views

Strategy for building best fit multiple regression model with time lagged variables

I am building a multiple regression model - wrapped in a function - with one dependent variable and a dozen independent variables. The reason why I am building a function is that I need to do this ...
0
votes
0answers
24 views

how to import and consolidate similar (but not equal) text from several different sources

I am importing a set of data from several files (excel files) that holds records with no identifiers on a daily basis. the data needs is then stored in a relational database (Oracle). The problem is ...
10
votes
1answer
126 views

Algorithm to determine the highest and lowest possible finishing position of a team in a league

Not sure if this is an appropriate question for SO, but here goes: I am interested in the required logic needed to be able to calculate the highest and lowest possible finishing position of a team in ...
-3
votes
0answers
34 views

What algorithms can be used to develope a download manager software as a project? [closed]

I want to create a download manager software for my minor project. Now im preparing documentation of development of this project. So, I want to know is that any algorithms that i should/can use in my ...
-6
votes
0answers
31 views

I have average rainfall per day please tell me how can I use this to get hourly rainfall? [closed]

I have average rainfall per day please tell me how can I use this to get hourly rainfall??? needed urgently for thesis work.. please help.. also guide me as to how can I make run off hydrographs with ...
1
vote
3answers
102 views

Why did this prime factorisation algorithm give the correct answer even though there is a flaw?

The problem stated to me was this: "What is the largest prime factor of the number 600851475143 ?" The program is used to find the answer was exactly this using C: #include<math.h> // for ...
1
vote
1answer
54 views

Universal Hashfunctions for string

I am trying to implement two different universal hash functions for strings. But I have the problem that sometimes the hash value is 0. With this I can“t use the hash function because I want to ...
1
vote
3answers
139 views

C++ STL set implementation

Why is the C++ set implemented as a binary tree instead of as a hashset, which can provide average case complexity of O(1) as compared to the O(log n) provided by a binary tree?
3
votes
2answers
54 views

Count or detect sprites passing from lines

I have a simulation in which thousands of agents (multi-pixel sprites) move to different directions. There are imaginary (not drawn in the space) detection lines in the simulation space, specified by ...
0
votes
2answers
47 views

Formatting a string based on Input and predefined values

I have 26 values's that i am considering as Special Symbol and are as with special delimeter "$" the value's can be from $A to $Z. Same time i have a predefined template as: I have $A,$B,$C..... ...
-2
votes
0answers
63 views

C# how to generate a unique binary sequence of numbers and recover it? [closed]

I want code that will help in generating a finite length unique binary sequence and regained the same by using some information. Generating sequence number in C# Unique number generation in C#
1
vote
2answers
73 views

How to know the number of voters where the number of candidates is larger than the number of slots

Our country recently held its election and I became interested in finding the number of voters who voted for a given position. Solving this problem for one slot positions (mayor, governor, etc.) is ...
2
votes
1answer
88 views

Map the 32bit integers into 32 bins, with 1,2,4..2^31 consecutive integers per bin

For a 32 bit integer, divide it into 32 bins of consecutive integers such that there are twice as many integers in each successive bin. The first bin contains 0, the second 0..1, etc up to 0..2^31-1. ...
3
votes
1answer
82 views

Mathematical proof for a binary tree

I am not hiding this is a part of my homework but I've tried enough before posting here. So... I need to prove for a binary tree that a node k have its left child on 2k and right child on 2k + 1 ...
5
votes
1answer
69 views

How to order/sort a 2D table of dependencies

I'm curious if there is some higher level theory/approaches/algorithm to solving this problem I have. I'm working on a network routing problem (a proprietary radio network). By way of example, I have ...
-1
votes
1answer
75 views

whats wrong in this logic of finding longest common child of string

i came up with this logic to find longest common child of two strings of equal length but it runs successfuly only on simple outputs and fails others,pls guide me what i am doing wrong here. ...
0
votes
4answers
83 views

std::sort that also keeps track of number of unique entries at each level

Say I have a std::vector. Say the vectors contain numbers. Let's take this std::vector 1,3,5,4,3,4,5,1,6,3 std::sort<std::less<int>> will sort this into 1,1,3,3,3,4,4,5,5,6, How would ...
0
votes
0answers
74 views

Sorting distinct elements in an array

I have a number of distinct elements in an array and want to find those items first before sorting the array. I was thinking of using a hash table to find the elements, but is that possible since I ...
5
votes
1answer
107 views

Implementing a swap method for an indexable concurrent skip list

I'm implementing a concurrent skip list map based on Java's ConcurrentSkipListMap, the differences being that I want the list to allow duplicates, and I also want the list to be indexable (so that ...
3
votes
1answer
63 views

Efficient way to merge-sort data from multiple tables

I have a series of tables that contain data of similar format. I.e. a UNION would work. Conceptually you can think of it as 1 table partitioned into multiple tables. I want to get the data from all ...
-4
votes
0answers
73 views

is it good to use design pattern in single module? [closed]

I have 2 question regarding Design pattern 1) I am working on a java project which is already developed now i need to include a new module. it's spring based project so do i need (or good ...
0
votes
2answers
57 views

Finding connections in 3 vectors of string

I have written in C++ some code, which finds the shortest path between two cities connected by roads or by flights. Cities can be connected with direct flights or indirect ones. User can type flights ...
2
votes
3answers
65 views

How to find elements existing in two lists but with different indexes

I have two lists of the same length which contains a variety of different elements. I'm trying to compare them to find the number of elements which exist in both lists, but have different indexes. ...
-2
votes
0answers
35 views

Counting sort pseudo code

I need an easy way of interpreting psudo code such as the one below. Im finding it difficult to grasp a way of understanding psudo code and working out the solution of a given input with pen and paper ...
0
votes
2answers
55 views

Artificial Intelligence for card battle based game

I want to make a game card battle based game. In this cards have specific attributes which can increase player's hp/attack/defense or attack an enemy to reduce his hp/attack/defense I am trying to ...
0
votes
2answers
54 views

Random exhaustive (non-repeating) selection from a large pool of entries

Suppose I have a large (300-500k) collection of text documents stored in the relational database. Each document can belong to one or more (up to six) categories. I need users to be able to randomly ...
0
votes
1answer
18 views

python mmap regex searching common entries in two files

I have 2 huge xml files. One is around 40GB, the other is around 2GB. Assume the xml format is something like this < xml > ... < page > < id > 123 < /id > ...
1
vote
1answer
43 views

Sliding window set

I'm looking for a way to efficiently maintain a set of values from a 1 minute sliding window from a given datastream (~100k values/sec). I'm looking for solution with at most logarithmic insertion ...
3
votes
1answer
57 views

Determine if a list of compare-and-swap instructions will sort a list of length N

Say I have a list of pairs of indices in an array of length N. I want to determine if an arbitrarily sorted list is sorted after doing for pair in pairs: if list_to_sort[pair.first] > ...
1
vote
2answers
67 views

Javascript text highlight function

Scenario I am trying to develop a Javascript text highlight function. It receives in input a text to search inside, an array of tokens to be searched, a class to wrap the found matches: var fmk = ...
-10
votes
0answers
99 views

A* single source - all destinations [closed]

1 2 3 4 5 6 7 8 s --------------- 1| c * * * * * * * 2| * * * * * * f * 3| * * a * e * * * 4| * * * * * * * * 5| * * b * y * z * 6| * * * * * * * * 7| * * * * * * * * 8| * * * * * * * * 9| * d * * * ...
3
votes
0answers
31 views

Determine main article image - HTML Agility Pack

I would like to use HTML Agility Pack to determine the main article body and then extract the main article image from it. I have noticed that most of the site webmasters have their main content ...
2
votes
3answers
100 views

Probability of death of a man moving n steps in a matrix

There is an island which is represented by square matrix nxn. A person on the island is standing at any given co-ordinates (x,y). He can move in any direction one step right, left, up, down on the ...
3
votes
1answer
50 views

Change of coordinates with glFrustum

I am trying to use glFrustum for a perspective projection and as I understand glFrustum like glOrtho can be used to modify the mapping of our desired coordinate system to real screen coordinates (as ...

1 3 4 5 6 7 599