我已经看到了类似的问题,但仍然没有找到我的问题的答案。我需要做的是,我有一个字符串数组:
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();
}
}发布于 2021-03-30 21:26:56
将以下方法添加到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;
}https://stackoverflow.com/questions/66871694
复制相似问题