CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 9 of 9
  1. #1
    Join Date
    Jan 2004
    Posts
    2

    Dynamic Programming

    I am trying to find a code for dynamic programming. Does anyone know where I might find one? Thank you!

  2. #2
    Join Date
    Oct 2002
    Location
    Singapore
    Posts
    3,128
    Do you mean meta-programming or polymorphism?

  3. #3
    Join Date
    Dec 2003
    Posts
    220

    Re: Dynamic Programming

    Originally posted by sjkim23
    I am trying to find a code for dynamic programming. Does anyone know where I might find one? Thank you!
    Do you mean sothing that is not a static ?

    Regards,
    homestead

  4. #4
    Join Date
    Jun 2003
    Location
    Armenia, Yerevan
    Posts
    720
    Perhaps you mean the part of "Operation Research" subject.

  5. #5
    Join Date
    Apr 2003
    Location
    Los Angeles area
    Posts
    776
    Is it a floor wax and a dessert topping?

  6. #6
    Join Date
    Jul 2003
    Location
    Maryland
    Posts
    762

    Re: Dynamic Programming

    Originally posted by sjkim23
    I am trying to find a code for dynamic programming. Does anyone know where I might find one? Thank you!
    I love vague questions. Really I do, keep posting them so that we cannot answer them.

  7. #7
    Join Date
    Oct 2002
    Location
    Singapore
    Posts
    3,128
    C'mon guys, stop teasing our new friend. You are scaring him off.

  8. #8
    Join Date
    May 1999
    Location
    Southern California
    Posts
    12,266
    Originally posted by Kheun
    C'mon guys, stop teasing our new friend. You are scaring him off.
    Then why not provide an answer instead of criticizing others for not providing an answer? Of course, unless you are psychic, you are unlikley to be able to answer the question.
    "Signature":
    My web site is Simple Samples.
    C# Corner Editor

  9. #9
    Join Date
    Jan 2004
    Posts
    9
    Dynamic programming is a technique that is used to solve some polynomial time problems by saving previous information instead of recomputing it. AvDav was correct - it belongs originally to the field of operations research, and 'programming' doesn't refer to computer programming. See http://www.nist.gov/dads/HTML/dynamicprog.html for a definition.

    To answer the OP question, you can find a number of good sources by searching Google for 'dynamic programming'. Here's one:
    http://mat.gsia.cmu.edu/classes/dynamic/dynamic.html

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured