Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
greedy algorithm java source code
#1

greedy algorithm java source code

Overview:

In general, greedy algorithms have five components:

A candidate (set, list, etc), from which a solution is created
A selection function, which chooses the best candidate to be added to the solution
A feasibility function, that is used to determine if a candidate can be used to contribute to a solution
An objective function, which assigns a value to a solution, or a partial solution, and
A solution function, which will indicate when we have discovered a complete solution
Greedy algorithms produce good solutions on some mathematical problems, but not on others.

Greedy algorithms should be applied to problems exhibiting these two properties:

Greedy choice propertyWe can make whatever choice seems best at the moment and then solve the subproblems that arise later. The choice made by a greedy algorithm may depend on choices made so far but not on future choices or all the solutions to the subproblem. It iteratively makes one greedy choice after another, reducing each given problem into a smaller one. In other words, a greedy algorithm never reconsiders its choices. This is the main difference from dynamic programming, which is exhaustive and is guaranteed to find the solution. After every stage, dynamic programming makes decisions based on all the decisions made in the previous stage, and may reconsider the previous stage's algorithmic path to solution.
Note:The traveling salesman problem doesn't have this property, and therefore the greedy algorithm solution isn't right for it.

Optimal substructureA problem exhibits optimal substructure if an optimal solution to the problem contains optimal solutions to the sub-problems.
Reply

#2
(09-29-2012, 06:40 PM)Guest Wrote: DEMONSTRATING greedy ALGORITHM source code in java and c++
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Powered By MyBB, © 2002-2024 iAndrew & Melroy van den Berg.