在数字字符串中查找最大数字

时间:2017-05-16 17:33:05

标签: java string numbers

我遇到了一个有趣的问题,想知道是否有人有任何关于如何解决它的线索。当给出一串数字时,我想找到最高的数字。因此,如果字符串是“2836”,则输出应为8,如果字符串为“12345”,则输出应为5,依此类推。这是我正在研究的方法:

public static void main(String[] args) {
        max("215");
    }

public static void max(String number) {

    if (number.isEmpty()) {
        System.out.println("The string is empty");
        System.exit(0);
    }

    int compCount = 1;
    int max = number.charAt(0);
    int compare = number.charAt(compCount);
    for (int i = 0; i < number.length(); i++) {

        if (max > compare) {
            compCount++;
        } else if (compare > max) {
            max = compare;
        } else {
            System.out.print(max);
        }
    }

    System.out.print(max);

}

当这段代码执行时,它给了我50,我想要5

3 个答案:

答案 0 :(得分:0)

嗯,你有很多错误的东西在继续。 首先,您永远不会更改compare第二,您在ascii中使用int,并且不会将其转换为Integer表示。 第三,您只需要一个if语句。全部合并,它给出了

int max = Character.getNumericValue(number.charAt(0));
for (int i = 1; i < number.length(); i++) {
    int compare = Character.getNumericValue(number.charAt(i));
    if (max < compare) {
        max = compare;
    }
}
return max;

我使用Character#getNumericValuechar转换为int

答案 1 :(得分:0)

由于数字的ASCII代码按升序排序,因此您可以使用Java 8轻松完成此操作:

public static void max(String number) {
    if (number == null || number.isEmpty()) {
        return;
    }

    int max = number.chars().max().getAsInt();
    System.out.println(Character.getNumericValue((char) max));
}

如果您的输入可以混合数字和其他符号,您也可以处理它:

public static void max(String number) {
    if (number == null || number.isEmpty()) {
        return;
    }

    OptionalInt max = number.chars().filter(Character::isDigit).max();
    if (max.isPresent()) {
        System.out.println(Character.getNumericValue((char) max.getAsInt()));
    } else {
        System.err.println("Provided string doesn't contain digits");
    }
}

答案 2 :(得分:0)

你必须修改你的max方法,如下所示

$(document).ready(function() {
        jQuery('.ctabs .ctab-links a').on('click', function(e) {
            var currentAttrValue = jQuery(this).attr('href');
            localStorage["currentTab"] = currentAttrValue;

            // Show/Hide Tabs
            jQuery('.ctabs ' + currentAttrValue).show().siblings().hide();

            // Change/remove current tab to active
            jQuery(this).parent('li').addClass('active').siblings().removeClass('active');

            e.preventDefault();
        });
        if (localStorage["currentTab"]) {
            // Show/Hide Tabs
            jQuery('.ctabs ' + localStorage["currentTab"]).show().siblings().hide();
            // Change/remove current tab to active
            jQuery('.ctabs .ctab-links a[href$="' + localStorage["currentTab"] + '"]').parent('li').addClass('active').siblings().removeClass('active');
        }
    });

}