3
votes
3answers
98 views
+150
Patterns for functional, dynamic and aspect-oriented programming
We have a very nice GoF book (Design Patterns: Elements of Reusable Object-Oriented Software) about patterns in Object Oriented Programming, and plenty of articles and resources in …
1
vote
6answers
186 views
Dynamic programming - Largest square block
I need to find the largest square of 1's in a giant file full of 1's and 0's. I know i have to use dynamic programming. I am storing it in a 2D array. Any help with the algorithm t …
-2
votes
3answers
77 views
dynamic programming: finding largest non-overlapping squares
I really have no idea how to do this using dynamic programming:
Problem:
I need to find the 2 largest non overlapping squares of a table
For example:
5 6
R F F R R F
F F F F F F
R …
15
votes
9answers
616 views
Sum of digits of a factorial
Link to the original problem
It's not a homework question. I just thought that someone might know a real solution to this problem.
I was on a programming contest back in 2004, an …
2
votes
1answer
53 views
How do I optimize these ocaml functions for dynamic interval scheduling?
I have a program that solves the weighted interval scheduling problem using dynamic programming (and believe it or not, it isn't for homework). I've profiled it, and I seem to be …
1
vote
1answer
184 views
Java Need help implementing an algorithm
This algorithm is so advanced for my basic programming skills that I just don't see how I could implement it. I'm posting this in a new question because I can't keep bothering the …
5
votes
4answers
212 views
A simple example for someone who wants to understand Dynamic Programming
I am looking for a manageably understandable example for someone who wants to learn Dynamic Programming. There are nice answers here about what is dynamic programming. The fibonacc …
9
votes
14answers
1k views
Algorithm to Divide a list of numbers into 2 equal sum lists
There is a list of numbers.
The list is to be divided into 2 equal sized lists, with a minimal difference in sum. The sums have to be printed.
#Example:
>>>que = [2,3,10 …
1
vote
2answers
197 views
Dynamic programming problems
I'm looking for some pointers about a dynamic programming problem. I cannot find any relevant information about how to solve this kind of problem. The only kind of problem I know h …
2
votes
2answers
251 views
What is dynamic programming algorithm for finding a Hamiltonian cycle?
What is dynamic programming algorithm for finding a Hamiltonian cycle in a undirected graph?
I have seen somewhere that there exists a algorithm with O(n*2^n) time complextity
15
votes
4answers
534 views
What is dynamic programming?
This is a really general question. What is dynamic programming (how's it different from recursion, memoization, etc)? I've read the wikipedia article on it but I still don't really …
0
votes
2answers
112 views
I want to add a singleton method with a closure to a Ruby object (Ruby)
I wish to add a singleton method to a particular object. I wish that when a instance method on a object is first called, it does some work, and then creates a singleton method for …
3
votes
7answers
391 views
Subset summing
I have a problem related to the subset sum problem and am wondering if the differences make it easier, i.e. solvable in a reasonable amount of time.
Given a value V, a set size L, …
2
votes
3answers
499 views
What is a good algorithm for getting the minimum vertex cover of a tree?
What is a good algorithm for getting the minimum vertex cover of a tree?
INPUT:
The node's neighbours.
OUTPUT:
The minimum number of vertices.
2
votes
2answers
289 views
Dynamic Programming: Number of ways to get at least N bubble sort swaps?
Let's say I have an array of elements for which a total ordering exists. The bubble sort distance is the number of swaps that it would take to sort the array if I were using a bub …
