码迷,mamicode.com
首页 > 其他好文 > 详细

算法研究,应付考试

时间:2014-07-29 16:50:52      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:http   io   for   art   代码   ar   算法   new   

package liu.jyc;
public class Question {
public static void main(String[] args) {
fun();
public static void fun(){
String[] a = new String[17]; ///
for(int i = 1;i<=9;i++){
a[2*(i-1)]=i+"";
for(int j = 0;j<Math.pow(3, 8);j++){/// 一共有3^8种情况
int p = j;
for(int i = 0;i<8;i++){ // 一共有8个空是填运算符的
int k = p%3;//取末位 (说的是3进制的末位)
p/=3; // 精妙之处!! 去掉3进制最后一位,当下次循环就p%3就取到的是倒数第2位的数字了 我想好久才明白的
switch(k){
case 0:
a[2*i+1]=" +";
break;
case 1:
a[2*i+1]=" -";
break;
case 2:
a[2*i+1]="o";// 代表空
break;
// 至此,将数组转换成字符串
String test = "";
for(int i = 0;i<a.length;i++){
if(!a[i].equals("o")){ /// 是不是空 就拼成字符串
test= test+a[i];
if(check(test)){
System.out.println(test.replaceAll(" ", "")+"=110");
* 判断字符串 test 是否满足题干要求 类似于 123 -4 -56 +789
* @param a
* @return
private static boolean check(String test) {
// test 是这样的字符串 123 -4 -56 +789
int sum = 0;http://www.huiyi8.com/gundongdaima/
String[] numbers = test.split(" ");图片滚动代码  
for(int j = 0;j<numbers.length;j++){
if(numbers[j].startsWith("+")){
numbers[j]= numbers[j].substring(1);
if(sum==110){
return true;
return false;

算法研究,应付考试,布布扣,bubuko.com

算法研究,应付考试

标签:http   io   for   art   代码   ar   算法   new   

原文地址:http://www.cnblogs.com/cjings/p/3875391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!