Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
15answers
35k views

Algorithm to calculate the number of divisors of a given number

What would be the most optimal algorithm (performance-wise) to calculate the number of divisors of a given number? It'll be great if you could provide pseudocode or a link to some example. EDIT: All ...
32
votes
11answers
1k views

Interview Question: Optimal Solution to the problem of finding Heavy integers

an interesting interview question: A non-negative integer is called heavy if the average value of its digits in decimal representation exceeds 7. For example the number 8698 is heavy, because the ...
7
votes
1answer
210 views

Exposé Layout Algorithm

I'm making something which lays items out similar to what Mac OS X does with windows in Exposé. It adapts to the aspect ratio of the items and the aspect ratio of the available area. Basically, the ...
6
votes
1answer
146 views

Minimal area matrix covering

Considering an n-by-n binary matrix, I would like to find the minimal area of two rectangles that would cover all the ones (1s). That is, the sum of the areas of the rectangles must be minimal. The ...
6
votes
3answers
276 views

Optimal algorithm for generating a random number R not in a set of numbers N

I am curious to know what the best way to generate a random integer R that is not in a provided set of integers (R∉N). I can think of several ways of doing this but I'm wondering what you all think.
5
votes
4answers
427 views

live asp.net web.config settings

I've only recently started working with asp.net and c#. Is there a standard practice set of web.config settings for a live final website? There seem to be a ton of options available and I'm looking to ...
4
votes
4answers
300 views

When locally optimal solutions equal global optimal? Thinking about greedy algorithm

Recently I've been looking at some greedy algorithm problems. I am confused about locally optimal. As you know, greedy algorithms are composed of locally optimal choices. But combining of locally ...
4
votes
3answers
478 views

Fastest brainfuck interpreter?

Simple question: What is the fastest brainfuck interpreter available? I am asking this because I am about to write my own optimizing bf interpreter and I need something to compare it with.
4
votes
3answers
365 views

Polynomial multiplication complexity reduction

I have been trying to figure tis ou for 3 days and have not gotten anywhere. I have to implement polynomial multiplication (multiply 2 quadratic equations). They look like: ( a1 x^2 + b1 x + c1 ) * ...
4
votes
5answers
380 views

I need an algorithm to find the best path

I need an algorithm to find the best solution of a path finding problem. The problem can be stated as: At the starting point I can proceed along multiple different paths. At each step there are ...
4
votes
14answers
436 views

So many ways to code one thing, deciding what's best?

Have you ever been in a situation where you code something and then find yourself wondering if you did it the best way. So you end up coding another way, and then find yourself again asking if you ...
3
votes
1answer
69 views

Stable pairing algorithm with only set of priorities?

Consider the Stable Marriage Algorithm: In mathematics and computer science, the stable marriage problem (SMP) is the problem of finding a stable matching between two sets of elements given a set ...
3
votes
1answer
146 views

Getting the optimal resolution in Visual Studio 2010

Is there any way of getting the monitors optimal resolution in vb? Thanks.
3
votes
4answers
438 views

Optimal algorithm for returning top k values from an array of length N

I have an array of n floats, and I wish to return the top k (in my case n ~ 100, k ~ 10) Is there a known optimal solution path for this problem? Could someone provide a C algorithm? EDIT: ...
3
votes
8answers
291 views

Which is optimal?

Is declaring a variable inside a loop is good or declaring on the fly optimal in Java.Also is there any performance cost involved while declaring inside the loop? eg. Option 1: Outside the Loop ...
3
votes
2answers
445 views

Optimal xml storage engine

I'm considering optimal open source solution for storing xml documents with further querying on them effectively. Amount of data will be small. As far as I understand native xml databases might form a ...
2
votes
2answers
91 views

Trying to select an option in a <select> element using PHP

Basically, I have a <select> element, with a bunch of options. Let's call them A, B, C, D, E. I'm trying to do this: without a ton of if statements, I want to have the option for the value of ...
2
votes
1answer
135 views

Is this optimal schedule task NPC?

I volunteered to write a program to schedule parent-teacher conferences. The principal wants parents to select 3 possible datetimes to visit their english and math teacher (at the same time). Once ...
2
votes
4answers
459 views

Optimal solution for non-overlapping maximum scoring sequences

While developing part of a simulator I came across the following problem. Consider a string of length N, and M substrings of this string with a non-negative score assigned to each of them. Of ...
1
vote
1answer
70 views

Caching dynamic pages in ASP.NET 4.0

This is our setup: Windows 2003 Server Standard, SQL 2005 and ASP.NET 4.0. We have a news site where URLs are structured like www.domain.com/This-is-my-headline-123.aspx - where 123 is the ID ...
1
vote
2answers
267 views

Approximate algorithm for minimum raggedness word wrap

I'm looking for an efficient algorithm (ideally, C-like pseudocode) to give an approximate solution to the following partition problem. Given a sequence S = {a_i : i=1,...,n} and a bound B, ...
1
vote
1answer
251 views

Optimal solution for next/previous function in PHP/mySQL

I want a good solution for next and previous in a php script. The first thing Im think is that you do this when you go next: select id from table where id > '$_GET[id]' limit 1; But how can I ...
1
vote
1answer
70 views

Rewrite this function as DB query?

I'm cleaning up my code, should i change the following function to a MySQL query? If so what would be a nice MySQL function to achieve this functionality? public ArrayList getNewTitles(ArrayList ...
1
vote
4answers
204 views

Why use frameworks? Convince me I should figure out Zend Framework and use it! [closed]

Possible Duplicate: Why use a framework with PHP? To begin with, I just can say that I have always been programming by my own. I use php mostly. So, can you explain me why I should learn ...
1
vote
2answers
184 views

Least squares optimal scaling

I have two waveforms which are linked by a numerical factor. I need to use optimal scaling (least squares) between the two waveforms to calculate this factor in Matlab. Unfortunately I have no idea ...
0
votes
1answer
38 views

Best huffman tree for optimal compression

I am coding an Huffman string compressor and I would like to have a confirmation I am doing the optimal compression with my tree. I am using this kind of tree: Instead of this kinda tree: I think ...
0
votes
0answers
21 views

Distribution of variable sized images/boxes(only aspect ratio given) on a 2D area

I'm trying to find a solution for the following problem. You have a set of pictures or let us assume they are just boxes with a given aspect ratio. And you have a two-dimensional area with width and ...
0
votes
1answer
191 views

How to find optimal road path of multiple locations within a map by giving post codes as input?

I've a requirement in which i need to show optimal road route related to a fixed location within a map by giving few postcodes, fetched from database on the basis of some conditions, as input. The ...
0
votes
8answers
465 views

C/C++: is GOTO faster than WHILE and FOR?

I know, that everybody hates GOTO and nobody recommends it. But that's not the point. I just want to know, which code is the fastest: a) the goto loop int i=3; loop: printf("something"); if(--i) ...
0
votes
0answers
105 views

optimality and completeness of algorithms [closed]

So are the following algorithms: Simulated Annealing Genetic Algorithm Recursive Best First Search SMA* (1) Optimal? (2) Complete?
0
votes
1answer
102 views

Invoking javascript time “object”

A webservice of mine returns an object in the following format. ...
0
votes
2answers
59 views

How can I check if I made optimal mysql database?

Are there any ways to check whether my Mysql database and PHP script are optimal? I want to figure it out and fix if it's possible till I publish it on internet for many users. Thanks.
0
votes
1answer
138 views

Is there an optimal way to render images in cocoa? Im using setNeedsDisplay

Currently, any time I manually move a UIImage (via handling the touchesMoved event) the last thing I call in that event is [self setNeedsDisplay], which effectively redraws the entire view. My images ...
0
votes
1answer
386 views

Is CollectionViewSource in WPF optimal?

Many WPF examples use CollectionViewSource as DataSource for DataBinding. It provides sorting and other useful functions. My question is, shouldn't this be done in Database? I mean in SQL? I bet it's ...
-1
votes
3answers
61 views

how to find out whether dynamic programming's answer is the optimal answer or not?

what sort of algorithm should I use beside to find out whether dynamic programming's answer to the problem is the optimal answer or not? could you suggest some papers to help me find out that?