Do you mean "Minimax"? Minimax is an algorithm used in 2 player games. It gives programs the much needed ability to "look ahead", to see what their best move might be, using a depth-first search.
With just a very small change, minimax(), becomes the much more efficient Alpha-Beta(). There's a ton of stuff on the web (more for AB() than the older Minimax() ) - just google it. It will look a lot different in an OOP implementation, than in the easier procedural one. On Dec 23, 6:21 am, sunny <[EMAIL PROTECTED]> wrote: > WHAT IS MIN AND MAX ALGORITHEM? > IF ANY BODY CAN TELL ME AND SEND ME THAT ALGO, > I WILL BE THANKFUL --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Algorithm Geeks" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/algogeeks -~----------~----~----~----~------~----~------~--~---
