Game problem of game tree taking ball

Source: Internet
Author: User
Package A;
/* Game tree to take the ball game problem
/public class MyA {
	
	//decision procedure, the current number of remaining balls =x
	static Boolean f (int x) {
		int[] op = {1, 3, 7, 8};
 //each of these 4 operations and, if feasible, use this for
		(int i = 0; i < op.length; i++) {
			if (x >= op[i]) {if
				
				(f (x-op[i)) = = Fal SE)		//opponent to make a judgment return
					true; 				Each other must lose, then their own will win
			}
		} return
		false; 							No matter how moves, the other party will always win, then their own must be lost
	} public

	static void Main (string[] args) {
		//dynamic planning: A calculated child problem is stored and then directly fetched
		// The method of dynamic buffering. can improve efficiency.
//		System.out.println (f ());		 System.out.println (f (5-1));		 System.out.println (f (5-3));
		 System.out.println (f);
		System.out.println (f (2));
	}


True


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.