首页 > 解决方案 > 如何分别获得尾数和指数值

问题描述

我已经看到了类似的问题,但仍然没有找到我的问题的答案。我需要做的是,我有一个字符串数组:

private String[] scientificNumberData = "2e3, 2e4, 6e3".split(", "); //[2e3, 2e4, 6e3]

我需要将尾数和指数分开才能返回List<ScientificNumber>。至于那个,我尝试创建键表示尾数和值指数列表的 Map,因为我可能有重复的键并且无法以其他方式将它们分开。

从这段代码中,我的地图看起来像这样:{2=[3, 4, 3], 6=[3, 4, 3]},但应该是2=[3, 4], 6=[3]}

有没有更好的解决方案,或者我可以以某种方式修复我的代码以获得正确的输出来使用List<ScientificNumber>

public List<ScientificNumber> getScientificNumbers() {

        List<ScientificNumber> result = new LinkedList<>();
        Map<Integer, List<Integer>> separateExponent = new LinkedHashMap<>();
        List<Integer> exs = new LinkedList<>();

        int mantissa = 0;
        int exponent = 0;

        for(String str: scientificNumberData){
            for (int i = 0; i < str.length(); i++){
                if(str.charAt(i) != 'e'){
                    if(matiss == 0){
                        if(!(separateExponent.containsKey(str.charAt(i)))){
                            mantissa = Integer.parseInt(String.valueOf(str.charAt(i)));
                            separateExponent.put(mantissa, exs);
                        }else{
                            mantissa = Integer.parseInt(String.valueOf(str.charAt(i)));
                        }
                    }else{
                        exponent = Integer.parseInt(String.valueOf(str.charAt(i)));
                    }
                }
            }
            // if there is a duplicate key already
            if(separateExponent.containsKey(mantissa)){
                separateExponent.get(mantissa).add(exponent);
            }else {
                // if not duplicate key
                separateExponent.put(mantissa, Collections.singletonList(exponent));
            }
             // change back to default values
            mantissa = 0;
            exponent = 0;
        }
        // works, but since wrong output the total will be wrong
        for(Map.Entry<Integer, List<Integer>> entry : separateExponent.entrySet()){
            for(int i = 0; i < entry.getValue().size(); i++){
                result.add(new ScientificNumber(entry.getKey(), entry.getValue().get(i)));
            }
        }
        return result;
    }

ScientificNumber.java 文件如下所示:

public class ScientificNumber {
    private int mantissa;
    private int exponent;

    public ScientificNumber(int mantissa, int exponent) {
        this.mantissa = mantissa;
        this.exponent = exponent;
    }

    public int intValue() {
        return mantissa * Double.valueOf(Math.pow(10, exponent)).intValue();
    }
}

标签: javaarraysarraylisthashmapexponent

解决方案


将以下方法添加到ScientificNumber类中:

public static ScientificNumber parse(String str) {
    int idx = str.indexOf('e');
    if (idx == -1)
        return new ScientificNumber(Integer.parseInt(str), 0);
    return new ScientificNumber(Integer.parseInt(str.substring(0, idx)),
                                Integer.parseInt(str.substring(idx + 1)));
}

反过来当然是:

@Override
public String toString() {
    return this.mantissa + "e" + this.exponent;
}

推荐阅读